spoggy commited on
Commit
7ccb4d7
·
verified ·
1 Parent(s): 4022452

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +10 -0
Dockerfile ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM node:20
2
+ RUN git clone https://scenaristeur.github.io/igora /app
3
+ WORKDIR /app
4
+ COPY . /app
5
+ RUN npm install
6
+ RUN npm run fix
7
+ #COPY . /app
8
+ # RUN npm install
9
+ # RUN npm run fix
10
+ CMD npm run start_backend_docker