Created
May 12, 2020 22:28
-
-
Save ShawonAshraf/e1b13419e7a78004284077c33b29a31a to your computer and use it in GitHub Desktop.
node-express docker medium
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:10.11-alpine | |
| WORKDIR /usr/app | |
| COPY . . | |
| RUN npm install | |
| EXPOSE $PORT | |
| CMD [ "npm", "run", "start" ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment