Fixed light client & added Docker config

This commit is contained in:
gltron
2020-03-26 14:35:10 +01:00
parent ea013cd6fd
commit 088f288ebf
26 changed files with 767 additions and 1921 deletions

13
server/Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM node:10
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 8080
EXPOSE 9090
CMD [ "npm", "start" ]