Dockerized

This commit is contained in:
2022-02-22 19:50:01 +00:00
parent 61f638d8da
commit 0182ba65b6
3 changed files with 14 additions and 1 deletions
+8
View File
@@ -0,0 +1,8 @@
FROM node:16
WORKDIR "/app"
COPY package*.json ./
RUN npm install
COPY . /app
EXPOSE 4000
ENTRYPOINT ["bash", "-c"]
CMD ["npm start"]