This commit is contained in:
Elijah Lucian
2021-03-20 15:29:00 -07:00
parent 03687402c9
commit b169f1372b
7 changed files with 14548 additions and 5 deletions

11
webclient/Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM node:14
WORKDIR /usr/src/app
COPY . .
RUN npm i
EXPOSE 3000
CMD ["npm", "run", "start"]