File size: 268 Bytes
8d01a6d
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
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"]