Created
June 13, 2017 23:52
-
-
Save fguisso/ec16369b61449b34cb1332e7feab979a to your computer and use it in GitHub Desktop.
express-hello-world
This file contains 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:alpine | |
RUN mkdir -p /usr/src/app | |
WORKDIR /usr/src/app | |
COPY . /usr/src/app/ | |
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