Skip to content

Instantly share code, notes, and snippets.

@ulrikstrid
Created June 24, 2017 10:59
Show Gist options
  • Save ulrikstrid/b9deb5c03569f372ab35c9714e356b12 to your computer and use it in GitHub Desktop.
Save ulrikstrid/b9deb5c03569f372ab35c9714e356b12 to your computer and use it in GitHub Desktop.
Updated Dockerfile
FROM node:latest
# Create app directory
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
COPY package.json /usr/src/app/
RUN npm install
ADD src /usr/src/app/src
CMD [ "npm", "start" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment