Skip to content

Instantly share code, notes, and snippets.

@rahulbhanushali
Created September 17, 2017 04:20
Show Gist options
  • Save rahulbhanushali/60b217d11d119299e07cb56d20b3873f to your computer and use it in GitHub Desktop.
Save rahulbhanushali/60b217d11d119299e07cb56d20b3873f to your computer and use it in GitHub Desktop.
Docker file expose example
FROM node:boron
# Create app directory
WORKDIR /home/code
# Install app dependencies
RUN npm install
EXPOSE 8080
CMD [ "npm", "start" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment