Skip to content

Instantly share code, notes, and snippets.

@arnabsen1729
Created October 27, 2021 15: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 arnabsen1729/384c8f779957c3fcb58b7379bd7e665d to your computer and use it in GitHub Desktop.
Save arnabsen1729/384c8f779957c3fcb58b7379bd7e665d to your computer and use it in GitHub Desktop.
Dockerfile for Docker and Container Session
FROM node:alpine
COPY . /app
WORKDIR /app
RUN npm install
CMD ["npm", "start"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment