Skip to content
Closed
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.test
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# docker build -t ff .
# docker run -p 3000:3000 -it ff
# Build stage
FROM --platform=$BUILDPLATFORM node:24.15.0-trixie-slim AS builder
FROM --platform=$BUILDPLATFORM node:24.16.0-trixie-slim AS builder

ARG TARGETPLATFORM
ARG BUILDPLATFORM
Expand Down Expand Up @@ -35,7 +35,7 @@ RUN npm run build && \
npm prune --omit=dev;

# Production stage
FROM node:24.15.0-trixie-slim AS runner
FROM node:24.16.0-trixie-slim AS runner

WORKDIR /ci

Expand Down
Loading