fix: update Alpine version to 3.20 for stable package repositories

- Change base image from node:22-alpine to node:22-alpine3.20
- Resolves package installation issues with Alpine 3.21 repositories
- Ensures stable access to build dependencies (python3, gcc, etc.)

This change fixes the Docker build process by using a more stable
version of Alpine Linux that has reliable package repositories.
This commit is contained in:
Matt Raymer
2025-05-20 23:07:49 -04:00
parent 6e657b6a87
commit e6d8aeeeb5
3 changed files with 8 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
# Build stage
FROM node:22-alpine AS builder
FROM node:22-alpine3.20 AS builder
# Install build dependencies