Moved to docker for production

This commit is contained in:
nicco
2018-02-23 11:13:13 +01:00
parent 8ae8e99897
commit 2b91123838
4 changed files with 28 additions and 4 deletions

10
cache/dockerfile vendored Normal file
View File

@@ -0,0 +1,10 @@
FROM node:alpine
EXPOSE 80
WORKDIR /app
USER nobody
COPY ./app.js ./.key ./
ENTRYPOINT [ "node" ]
CMD [ "app.js" ]