Skip to content

Instantly share code, notes, and snippets.

@denispeyrusaubes
Created October 19, 2018 20:51
Show Gist options
  • Save denispeyrusaubes/d76e9bec42986c4b6fbdb764d8d4c05d to your computer and use it in GitHub Desktop.
Save denispeyrusaubes/d76e9bec42986c4b6fbdb764d8d4c05d to your computer and use it in GitHub Desktop.
FROM node:8
# Create app directory
WORKDIR /usr/src/app
COPY package*.json ./
COPY app.js ./
RUN npm install
EXPOSE 3000
CMD [ "npm", "start" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment