fix: remove apk upgrade from Dockerfile base stage

apk upgrade hangs on slow/unreliable Alpine mirrors and is not needed
for a build. node:20-alpine is sufficiently up to date.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-13 00:24:52 -05:00
parent 3e536a0a0e
commit ea5b4a955d

View File

@@ -1,5 +1,4 @@
FROM node:20-alpine AS base
RUN apk update && apk upgrade --no-cache
# Install dependencies only when needed
FROM base AS deps