Created
April 17, 2019 00:17
-
-
Save stoutlabs/a3585ae7a118fab9d0744c00fcd61f45 to your computer and use it in GitHub Desktop.
An example of a multi step 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
# build environment | |
FROM node:10.15.3-alpine as builder | |
WORKDIR /usr/src/app | |
ENV PATH /usr/src/app/node_modules/.bin:$PATH | |
COPY ./package.json ./ | |
RUN npm install | |
COPY . . | |
RUN npm run build | |
# production environment | |
FROM nginx:1.13.9-alpine | |
RUN rm -rf /etc/nginx/conf.d | |
RUN mkdir -p /etc/nginx/conf.d | |
COPY ./default.conf /etc/nginx/conf.d/ | |
COPY --from=builder /usr/src/app/out /usr/share/nginx/html | |
EXPOSE 80 | |
CMD ["nginx", "-g", "daemon off;"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment