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