fix(docker): use valid node:22-bookworm-slim base for web-build stage
node:22-noble does not exist on Docker Hub (no noble variant of the official node image; the -noble suffix was carried over from the MS dotnet image tags). Broke the main image-build job (run 482) after PR #120 landed, since PR runs skip the build job. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
+1
-1
@@ -1,6 +1,6 @@
|
||||
FROM mcr.microsoft.com/dotnet/aspnet:10.0-noble-amd64 AS dotnet-runtime
|
||||
|
||||
FROM node:22-noble AS web-build
|
||||
FROM node:22-bookworm-slim AS web-build
|
||||
WORKDIR /source
|
||||
COPY web/package*.json ./web/
|
||||
WORKDIR /source/web
|
||||
|
||||
Reference in New Issue
Block a user