Skip to content

Instantly share code, notes, and snippets.

View suryanshsingh2001's full-sized avatar
Sipping Coffee

Suryansh Singh suryanshsingh2001

Sipping Coffee
View GitHub Profile
@KartikeyMish
KartikeyMish / Dockerfile
Last active August 31, 2023 12:26
Dockerfile template for angular projects
# angular version = 16
# Get your appname from the package-lock.json file of you angular project
# Stage 1
FROM node:latest as node
WORKDIR /app
COPY . .
RUN npm install
RUN npm run build --prod
# Stage 2