From 58bd9f293cb3be8c0bd33df3a52376909596cc77 Mon Sep 17 00:00:00 2001 From: Christian Kuhtz Date: Sun, 14 Jul 2024 20:51:59 +0000 Subject: [PATCH] apk pip.. --- api/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/api/Dockerfile b/api/Dockerfile index d7eb888..59d0566 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -15,6 +15,9 @@ WORKDIR /hamframe # apt-get autoremove --yes && \ # rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* +RUN apk update && \ + apk --no-cache add \ + python3 cmd:pip3 FROM stage-1 AS stage-2