Created
October 22, 2017 11:24
-
-
Save mlabouardy/63ddc5cb94d3e2a5daa6aa1812a03a50 to your computer and use it in GitHub Desktop.
Dockerfile to build a NodeJS app
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.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