Skip to content

Instantly share code, notes, and snippets.

@sagar-gavhane
Created April 11, 2020 16:35
Show Gist options
  • Save sagar-gavhane/d63b8f2c9d3a1660a75e2d7113b8e631 to your computer and use it in GitHub Desktop.
Save sagar-gavhane/d63b8f2c9d3a1660a75e2d7113b8e631 to your computer and use it in GitHub Desktop.
simple Dockerfile for refernce
FROM node:latest
WORKDIR /app
COPY . .
RUN npm install
EXPOSE 3000
ENTRYPOINT ["node", "app.js"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment