rr1 commited on
Commit
47020b1
·
verified ·
1 Parent(s): b489a18

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -0
Dockerfile ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ FROM node:20.9
2
+ RUN git clone https://github.com/weaigc/bingo
3
+ WORKDIR "bingo"
4
+ RUN npm i
5
+ RUN npm run build
6
+ ENV PORT 7860
7
+ EXPOSE 7860
8
+ CMD ["npm", "run", "start"]