Create Dockerfile
Browse files- 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
|