dockerfile

This commit is contained in:
2022-05-29 14:52:23 +02:00
committed by GitHub
parent 3ba4e5e185
commit 2f2e7eb385

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM node:latest
RUN cd Server/
RUN npm i
EXPOSE 4000
CMD ['node', 'Server/index.js']