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
6 changes: 3 additions & 3 deletions web/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM docker.io/library/node:24.19.0-alpine3.24@sha256:d32cdf619f63fe0471182d08996dd516c6275bb5fd31ae06e55a570bd9e1ad43 AS build-base
FROM --platform=$BUILDPLATFORM docker.io/library/node:24.21.0-alpine3.24@sha256:be80f76cf40ec8e42b9bec49f60a55e0660f30af58d3e5a25530785b30ea67e2 AS build-base
ARG BUN_VERSION=1.3.6
RUN apk upgrade --no-cache && \
npm install --global "bun@${BUN_VERSION}"
Expand Down Expand Up @@ -36,15 +36,15 @@ RUN mkdir -p public && \
# reliable under QEMU, while App Runner still needs an amd64 image. Install the
# small set of traced native runtime dependencies for the requested target so a
# native arm64 build never ships arm64 Sharp binaries in the amd64 image.
FROM docker.io/library/node:24.19.0-alpine3.24@sha256:d32cdf619f63fe0471182d08996dd516c6275bb5fd31ae06e55a570bd9e1ad43 AS runtime-deps
FROM docker.io/library/node:24.21.0-alpine3.24@sha256:be80f76cf40ec8e42b9bec49f60a55e0660f30af58d3e5a25530785b30ea67e2 AS runtime-deps
ARG BUN_VERSION=1.3.6
WORKDIR /app
RUN apk upgrade --no-cache && \
npm install --global "bun@${BUN_VERSION}"
COPY package.json bun.lock* ./
RUN bun install --frozen-lockfile --production

FROM docker.io/library/node:24.19.0-alpine3.24@sha256:d32cdf619f63fe0471182d08996dd516c6275bb5fd31ae06e55a570bd9e1ad43 AS runner
FROM docker.io/library/node:24.21.0-alpine3.24@sha256:be80f76cf40ec8e42b9bec49f60a55e0660f30af58d3e5a25530785b30ea67e2 AS runner
WORKDIR /app
ENV NODE_ENV=production
ENV NEXT_TELEMETRY_DISABLED=1
Expand Down
Loading