igora / Dockerfile
spoggy's picture
Update Dockerfile
d37ef7d verified
raw
history blame
208 Bytes
FROM node:20
RUN git clone https://github.com/scenaristeur/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