JerryZhouYG commited on
Commit
afbdfdc
·
verified ·
1 Parent(s): 421e5ad

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +11 -0
Dockerfile ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM node:18-alpine
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apk add --no-cache git && \
6
+ git clone https://github.com/ammaarreshi/Gemini-Search.git . && \
7
+ npm install && \
8
+ echo "GOOGLE_API_KEY=your_api_key_here" > .env && \
9
+ chown -R node:node /app
10
+
11
+ CMD ["npm", "run", "dev"]