Create Dockerfile

This commit is contained in:
Jeff 2022-12-10 01:32:35 +01:00
parent 14a93c02ba
commit 1ae32c8989

6
Dockerfile Normal file
View file

@ -0,0 +1,6 @@
FROM node:latest
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
CMD ["npm", "start"]