Attempt to revert NodeJS so ARM 32bit builds work again (#1081)

* Attempt to revert NodeJS so ARM 32bit builds work again

* Rollback even further
This commit is contained in:
Matt
2025-11-16 16:05:15 -05:00
committed by GitHub
parent 415c3238ae
commit 81233e2999
4 changed files with 8 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
# Node dependencies stage
FROM public.ecr.aws/docker/library/node:lts-alpine AS frontend-dependencies
FROM public.ecr.aws/docker/library/node:22-alpine AS frontend-dependencies
WORKDIR /app
# Install pnpm globally (caching layer)
@@ -10,7 +10,7 @@ COPY frontend/package.json frontend/pnpm-lock.yaml ./
RUN pnpm install --frozen-lockfile
# Build Nuxt (frontend) stage
FROM public.ecr.aws/docker/library/node:lts-alpine AS frontend-builder
FROM public.ecr.aws/docker/library/node:22-alpine AS frontend-builder
WORKDIR /app
# Install pnpm globally again (it can reuse the cache if not changed)