Created
September 17, 2017 04:20
-
-
Save rahulbhanushali/60b217d11d119299e07cb56d20b3873f to your computer and use it in GitHub Desktop.
Docker file expose example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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