Skip to content

Instantly share code, notes, and snippets.

@vschoener
Last active April 29, 2020 14:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vschoener/ed943994008331da8f9ce9c9edcbacc9 to your computer and use it in GitHub Desktop.
Save vschoener/ed943994008331da8f9ce9c9edcbacc9 to your computer and use it in GitHub Desktop.
Dockerfile stage production
#
# Production stage.
# This state compile get back the JavaScript code from builder stage
# It will also install the production package only
#
FROM node:12.13.0-alpine
WORKDIR /app
ENV NODE_ENV=production
COPY package*.json ./
RUN npm ci --quiet --only=production
## We just need the build to execute the command
COPY --from=builder /usr/src/app/build ./build
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment