Skip to content

Instantly share code, notes, and snippets.

@RanjanSushant
Created March 1, 2022 16:34
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 RanjanSushant/bc91b89ab445fb52946b7f564808bdac to your computer and use it in GitHub Desktop.
Save RanjanSushant/bc91b89ab445fb52946b7f564808bdac to your computer and use it in GitHub Desktop.
Dockerfile for Codesphere Docker demo
FROM node:17.6-alpine
WORKDIR /home/demo_app/
COPY package.json package.json
RUN npm install
COPY ./demo_app .
CMD ["node", "server.js"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment