feat: Graceful shutdown with git sync

This commit is contained in:
NGPixel
2017-05-18 20:23:24 -04:00
parent f5cce0e1f4
commit d744eb4d4c
4 changed files with 21 additions and 7 deletions

View File

@@ -1,10 +1,10 @@
FROM node:latest
FROM node:6-alpine
ENV WIKI_JS_DOCKER 1
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
RUN yarn add wiki.js@latest
RUN npm install wiki.js@latest
EXPOSE 3000
CMD [ "node", "server" ]