Skip to content

Commit

Permalink
feat: Added Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Winterbottom committed Mar 11, 2019
1 parent 98ef115 commit e56f5a0
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
FROM node:11-alpine

# Update any outdated packages
RUN apk update

WORKDIR /srv

# Move this separately so install get's cached
COPY package.json /srv/package.json
RUN yarn install --production

# Copy the remaining code over
COPY . /srv/

# By default, use the production command
CMD yarn start

0 comments on commit e56f5a0

Please sign in to comment.