Skip to content

Instantly share code, notes, and snippets.

@fguisso
Created June 13, 2017 23:52
Show Gist options
  • Save fguisso/ec16369b61449b34cb1332e7feab979a to your computer and use it in GitHub Desktop.
Save fguisso/ec16369b61449b34cb1332e7feab979a to your computer and use it in GitHub Desktop.
express-hello-world
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