Last active
May 9, 2020 04:46
-
-
Save tirthankarkundu17/beeedea2dff2c4aef3762b2fecd680ee to your computer and use it in GitHub Desktop.
Docker file for NODE Server
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:12 | |
WORKDIR /app | |
COPY package.json . | |
RUN npm install | |
COPY . . | |
CMD node app.js | |
EXPOSE 3500 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment