File size: 251 Bytes
12ea8cc
 
 
 
 
db035f2
12ea8cc
 
 
 
 
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/Siddh-Jwero/Gemini-Search.git . && \
    npm install && \
    echo "GOOGLE_API_KEY=" > .env && \
    chown -R node:node /app

CMD ["npm", "run", "dev"]