added docker file

This commit is contained in:
polarDefender 2024-05-06 03:11:19 -07:00
parent 374d0d60ed
commit 98dd2705b4
2 changed files with 15 additions and 0 deletions

11
Dockerfile Normal file
View file

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