Skip to content

Instantly share code, notes, and snippets.

View github-dorian-grasset's full-sized avatar

Dorian Grasset github-dorian-grasset

View GitHub Profile
@github-dorian-grasset
github-dorian-grasset / Dockerfile
Last active March 5, 2026 10:56
How I Cut Docker Image Size by Switching to a Distroless Base Image
# ---- Full Dependency and Build Stage ----
FROM node:22-alpine AS build
WORKDIR /src
COPY package*.json ./
RUN npm ci --ignore-scripts --no-fund
COPY . .