Created
October 19, 2018 20:51
-
-
Save denispeyrusaubes/d76e9bec42986c4b6fbdb764d8d4c05d to your computer and use it in GitHub Desktop.
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: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