1
0
mirror of https://github.com/theoludwig/theoludwig.git synced 2026-02-28 16:01:00 +01:00

chore: explicit docker.io + deps update latest

This commit is contained in:
2026-02-26 21:57:19 +01:00
parent 42c79ef49e
commit 748eeb487c
10 changed files with 830 additions and 836 deletions

View File

@@ -1,4 +1,4 @@
FROM node:24.13.1-slim@sha256:a81a03dd965b4052269a57fac857004022b522a4bf06e7a739e25e18bce45af2 AS node-pnpm
FROM docker.io/node:24.14.0-slim@sha256:e8e2e91b1378f83c5b2dd15f0247f34110e2fe895f6ca7719dbb780f929368eb AS node-pnpm
ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH"
RUN npm install --global corepack@0.34.6 && corepack enable
@@ -9,7 +9,7 @@ WORKDIR /usr/src/app
FROM node-pnpm AS builder
COPY ./ ./
RUN pnpm install --global turbo@2.8.9
RUN pnpm install --global turbo@2.8.11
RUN turbo prune @repo/website --docker
FROM node-pnpm AS installer