Skip to content

Instantly share code, notes, and snippets.

@vschoener
Created November 8, 2019 12:32
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/351d9ab87063e81321f5346d7ad5ae53 to your computer and use it in GitHub Desktop.
Save vschoener/351d9ab87063e81321f5346d7ad5ae53 to your computer and use it in GitHub Desktop.
build stage
#
# Builder stage.
# This state compile our TypeScript to get the JavaScript code
#
FROM node:12.13.0 AS builder
WORKDIR /usr/src/app
COPY package*.json ./
COPY tsconfig*.json ./
COPY ./src ./src
RUN npm ci --quiet && npm run build
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment