fix(docker): switch base-node-deps from alpine to slim for bash support

The postinstall script (patch-bundled-deps.sh) requires bash, which is
not available on Alpine. This caused npm install to fail silently,
leaving node_modules empty and breaking the devcontainer build.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
rw
2026-03-11 22:08:56 +00:00
parent d84543314e
commit ad51d61ee4

View File

@@ -7,7 +7,7 @@
# App Dockerfiles:
# COPY --from=metabuilder/base-node-deps /app/node_modules ./node_modules
FROM node:20-alpine
FROM node:20-slim
WORKDIR /app