Created
October 27, 2021 15:46
-
-
Save arnabsen1729/384c8f779957c3fcb58b7379bd7e665d to your computer and use it in GitHub Desktop.
Dockerfile for Docker and Container Session
This file contains hidden or 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: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