Created
July 19, 2021 20:05
-
-
Save starlightromero/809ec553a84c27abdd749002abe1bdbb to your computer and use it in GitHub Desktop.
Node Dockerfile.buster
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:14.17-buster as build | |
| WORKDIR /usr/src/app | |
| COPY package*.json ./ | |
| RUN npm ci --production | |
| COPY . . | |
| FROM node:14.17-buster | |
| WORKDIR /usr/src/app | |
| COPY --from=build /usr/src/app . | |
| EXPOSE 8080 | |
| CMD [ "npm", "start" ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment