basic whiteboard with no btns

This commit is contained in:
rofl256
2018-02-08 17:45:07 +01:00
parent 1098d81f2e
commit 9b58e572ae
27 changed files with 4330 additions and 0 deletions

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
FROM node:boron
MAINTAINER cracker0dks
# Create app directory
RUN mkdir -p /opt/app
WORKDIR /opt/app
# Install app dependencies
COPY ./package.json /opt/app
RUN npm install
# Bundle app source
COPY . /opt/app
EXPOSE 80
CMD [ "npm", "start" ]