Created
November 4, 2021 20:08
-
-
Save agusrichard/3dd81a8df1d0077a49838692da2aa4d2 to your computer and use it in GitHub Desktop.
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 | |
| WORKDIR /usr/app | |
| COPY package*.json ./ | |
| RUN npm install | |
| COPY . ./ | |
| EXPOSE 5000 | |
| CMD npm run dev |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment