dockerfile

This commit is contained in:
Justin (shocknet) 2024-05-19 22:22:10 -04:00
parent 5c80ea7e8b
commit 0242397085

11
Dockerfile Normal file
View file

@ -0,0 +1,11 @@
FROM node:18
WORKDIR /app
COPY package*.json /app
RUN npm i
COPY . /app
CMD [ "npm", "start" ]