2ch commited on
Commit
2178079
·
verified ·
1 Parent(s): 87c6bb1

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -0
Dockerfile ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ FROM node:18
2
+ WORKDIR /app
3
+ RUN git clone https://github.com/PublicAffairs/openai-gemini /app/tmp
4
+ RUN mv /app/tmp/* /app
5
+ RUN npm install
6
+ CMD [ "node", "node.mjs" ]