Created
April 11, 2020 16:35
-
-
Save sagar-gavhane/d63b8f2c9d3a1660a75e2d7113b8e631 to your computer and use it in GitHub Desktop.
simple Dockerfile for refernce
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: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