Skip to content

Instantly share code, notes, and snippets.

View Firnael's full-sized avatar

Audron Firnael

View GitHub Profile
@Firnael
Firnael / Dockerfile
Last active August 8, 2024 07:51
Distroless NodeJS + Typescript
## NodeJS Typescript multi-stage docker image ##
# build project with typescript
FROM node:16.15.1-stretch as ts-compiler
WORKDIR /app
COPY package*.json ./
COPY tsconfig*.json ./
RUN npm install
COPY . ./
RUN npm run build