🐳 Add docker

This commit is contained in:
stefan080106
2022-06-07 22:33:24 +02:00
parent cbdf6a6b3f
commit 199da0d3f6
5 changed files with 5687 additions and 4997 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM node:12
WORKDIR /usr/src/app
COPY . ./
# building the app
RUN npm i
RUN npm run build
# Running the app
CMD [ "npm", "start" ]