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
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1.7
FROM node:22-bookworm-slim AS build
FROM node:25-bookworm-slim AS build
WORKDIR /src
RUN corepack enable
COPY package.json pnpm-lock.yaml pnpm-workspace.yaml turbo.json ./
Expand Down Expand Up @@ -32,7 +32,7 @@ RUN --mount=type=cache,id=harly-next-cache,target=/src/apps/web/.next/cache \
pnpm --filter @harly/cli build && pnpm --filter web build
RUN pnpm exec esbuild tooling/runtime/src/entrypoint.ts --bundle --platform=node --format=esm --target=node22 --outfile=/tmp/harly-runtime.mjs

FROM node:22-bookworm-slim AS runtime
FROM node:25-bookworm-slim AS runtime
ENV NODE_ENV=production \
NEXT_TELEMETRY_DISABLED=1 \
PORT=3000 \
Expand Down
Loading