copy old frontend

This commit is contained in:
2018-05-10 22:23:58 +02:00
parent 85717752ab
commit 76fbd0c972
57 changed files with 8860 additions and 194 deletions

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM node:latest
# Create app directory
RUN mkdir -p /usr/app
WORKDIR /usr/app
VOLUME /usr/app/config
# Install app
COPY . /usr/app
RUN yarn install
RUN yarn build:frontend
EXPOSE 8080
#CMD [ "yarn", "app" ]