Created
June 25, 2022 20:27
-
-
Save nicoclau/81ab94ba74106b51bcd1fcc2f809f03f to your computer and use it in GitHub Desktop.
Dockerfile
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
| # pull official base image | |
| FROM node:16.9.1-alpine3.14 | |
| # set working directory | |
| WORKDIR /reactapp | |
| # install app dependencies | |
| COPY package.json ./ | |
| COPY package-lock.json ./ | |
| RUN npm install --silent | |
| # add app | |
| COPY . ./ | |
| # start app | |
| CMD ["npm", "start"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment