igora / Dockerfile
spoggy's picture
Create Dockerfile
7ccb4d7 verified
raw
history blame
207 Bytes
FROM node:20
RUN git clone https://scenaristeur.github.io/igora /app
WORKDIR /app
COPY . /app
RUN npm install
RUN npm run fix
#COPY . /app
# RUN npm install
# RUN npm run fix
CMD npm run start_backend_docker