Skip to content

Instantly share code, notes, and snippets.

@stoutlabs
Created April 17, 2019 00:17
Show Gist options
  • Save stoutlabs/a3585ae7a118fab9d0744c00fcd61f45 to your computer and use it in GitHub Desktop.
Save stoutlabs/a3585ae7a118fab9d0744c00fcd61f45 to your computer and use it in GitHub Desktop.
An example of a multi step Dockerfile
# 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