Skip to content

Instantly share code, notes, and snippets.

@arturojain
Last active July 24, 2019 14:22
Show Gist options
  • Save arturojain/18a8942e45e9ea0eec4ce895d6ac93cd to your computer and use it in GitHub Desktop.
Save arturojain/18a8942e45e9ea0eec4ce895d6ac93cd to your computer and use it in GitHub Desktop.
FROM node:10.16
# Create app directory
WORKDIR /usr/src/app
# Install app dependencies
COPY package*.json ./
RUN npm install
# Bundle app source
COPY . .
EXPOSE 7000
CMD [ "npm", "start" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment