Begin working on docker intergration

This commit is contained in:
2021-01-23 23:57:30 +11:00
parent a983d60b32
commit d0b383f5de
7 changed files with 9183 additions and 21 deletions
+15
View File
@@ -0,0 +1,15 @@
FROM node:15.6
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
ENV PORT=3000
EXPOSE 3000
CMD [ "npm", "start" ]