Skip to content

Instantly share code, notes, and snippets.

@tirthankarkundu17
Last active May 9, 2020 04:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tirthankarkundu17/beeedea2dff2c4aef3762b2fecd680ee to your computer and use it in GitHub Desktop.
Save tirthankarkundu17/beeedea2dff2c4aef3762b2fecd680ee to your computer and use it in GitHub Desktop.
Docker file for NODE Server
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