0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-04 23:22:42 +00:00

Add dockerization and example compose file

This commit is contained in:
Schemen
2018-08-21 08:50:57 +02:00
committed by Rae2che5
parent f6b058f3c9
commit d35db1f702
4 changed files with 35 additions and 0 deletions

14
Dockerfile Normal file
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" ]