Skip to content

Instantly share code, notes, and snippets.

@mlabouardy
Created October 22, 2017 11:24
Show Gist options
  • Save mlabouardy/63ddc5cb94d3e2a5daa6aa1812a03a50 to your computer and use it in GitHub Desktop.
Save mlabouardy/63ddc5cb94d3e2a5daa6aa1812a03a50 to your computer and use it in GitHub Desktop.
Dockerfile to build a NodeJS app
FROM node:8.7.0
MAINTAINER mlabouardy <[email protected]>
WORKDIR /app
RUN npm install mysql express
COPY server.js .
EXPOSE 3000
CMD node server.js
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment