Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
# Nothing failed, which is what made it dangerous. Building here removes the
# possibility rather than relying on remembering.

FROM node:22-slim AS build
FROM node:22.23.2-slim AS build
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm ci
COPY tsconfig.json ./
COPY src/ src/
RUN npm run build

FROM node:22-slim
FROM node:22.23.2-slim
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm ci --omit=dev
Expand Down
Loading