This commit is contained in:
Stanislaw
2022-12-16 21:46:53 +01:00
parent 77c1f0f664
commit df646a0f80
2 changed files with 25 additions and 0 deletions

5
Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM node:16.10.0
WORKDIR /app
COPY ./ ./
RUN npm install
CMD ["npm", "run", "start"]