| FROM node:18-alpine | |
| WORKDIR /app | |
| RUN apk add --no-cache git && \ | |
| git clone https://github.com/ammaarreshi/Gemini-Search.git . && \ | |
| npm install && \ | |
| echo "GOOGLE_API_KEY=your_api_key_here" > .env && \ | |
| chown -R node:node /app | |
| CMD ["npm", "run", "dev"] |
| FROM node:18-alpine | |
| WORKDIR /app | |
| RUN apk add --no-cache git && \ | |
| git clone https://github.com/ammaarreshi/Gemini-Search.git . && \ | |
| npm install && \ | |
| echo "GOOGLE_API_KEY=your_api_key_here" > .env && \ | |
| chown -R node:node /app | |
| CMD ["npm", "run", "dev"] |