initial commit

This commit is contained in:
jaedle
2019-03-09 13:47:07 +01:00
commit b2b34b7113
10 changed files with 623 additions and 0 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM node:lts-alpine
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm ci
COPY . .
CMD [ "/app/docker-entrypoint.sh" ]