Add dockerization and example compose file

This commit is contained in:
Schemen
2018-08-22 01:44:48 -07:00
committed by Rae2che5
parent f6b058f3c9
commit d35db1f702
4 changed files with 35 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
FROM node:8
# Create app directory
WORKDIR /usr/src/app
# Bundle app source
COPY . .
ENV NODE_ENV=docker
RUN yarn
EXPOSE 8000
CMD [ "yarn", "start" ]