1
0
mirror of https://github.com/theoludwig/theoludwig.git synced 2026-06-03 07:18:36 +02:00

build(deps): update next-intl to avoid redirect issue with the port in production + other deps to latest

Ref: https://github.com/amannn/next-intl/pull/2322
This commit is contained in:
2026-06-01 23:54:16 +02:00
parent 332b1e69c2
commit 02296281f3
13 changed files with 3444 additions and 2420 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
FROM docker.io/node:24.15.0-slim@sha256:879b21aec4a1ad820c27ccd565e7c7ed955f24b92e6694556154f251e4bdb240 AS node-pnpm
ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME/bin:$PATH"
RUN npm install --global corepack@0.34.7 && corepack enable
RUN npm install --global corepack@0.35.0 && corepack enable
ENV TURBO_TELEMETRY_DISABLED=1
ENV NEXT_TELEMETRY_DISABLED=1
ENV DO_NOT_TRACK=1
@@ -9,7 +9,7 @@ WORKDIR /usr/src/app
FROM node-pnpm AS builder
COPY ./ ./
RUN pnpm install --global turbo@2.9.9
RUN pnpm install --global turbo@2.9.16
RUN turbo prune @repo/website --docker
FROM node-pnpm AS installer