Skip to content

Instantly share code, notes, and snippets.

View khorramk's full-sized avatar
🏠
Working from home

Khorram Khondkar khorramk

🏠
Working from home
  • Northampton
  • 22:04 (UTC +01:00)
View GitHub Profile
# 1. Build our Angular app
FROM node:alpine as builder
WORKDIR /app
COPY package.json package-lock.json ./
ENV CI=1
RUN npm ci
COPY . .
RUN npm run build -- --prod --output-path=/dist