From a1763c223bebd81bfdcc185fd530849422787b35 Mon Sep 17 00:00:00 2001 From: Goldy <153996346+g0ldyy@users.noreply.github.com> Date: Fri, 28 Jun 2024 18:53:30 +0200 Subject: [PATCH] Update Dockerfile --- Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Dockerfile b/Dockerfile index 2a529cd..16b88a5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,13 @@ LABEL name="Comet" \ # This is to prevent Python from buffering stdout and stderr ENV PYTHONUNBUFFERED=1 +# Fix python-alpine gcc +RUN apk add --no-cache \ + gcc \ + musl-dev \ + libffi-dev \ + make + # Install Poetry RUN pip install poetry