From 4d0512533f77dc13c0c0b6cb5a6503b97f2400dd Mon Sep 17 00:00:00 2001 From: manunz Date: Sat, 31 May 2025 18:08:44 +0000 Subject: [PATCH] Fix Dockerfile to resolve Alpine package installation issues --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9cd254f..654a266 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,12 @@ -ARG BUILD_FROM +ARG BUILD_FROM=alpine:3.18 FROM $BUILD_FROM # Set shell SHELL ["/bin/bash", "-o", "pipefail", "-c"] # Install required packages -RUN apk add --no-cache \ +RUN apk update && \ + apk add --no-cache \ python3 \ py3-pip \ py3-wheel \