From f436859d769730eb8a01e9b572248b05f5d61c4d Mon Sep 17 00:00:00 2001 From: Johannes Thiem Date: Tue, 21 May 2024 10:59:02 +0200 Subject: [PATCH] fix: add necessary build tools & dependencies --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index e20b88b..afd53c3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,9 @@ FROM python:3.10-alpine3.19 WORKDIR / +# Install necessary build tools and dependencies +RUN apk add --no-cache gcc musl-dev libffi-dev python3-dev py3-setuptools + RUN pip3 install poetry COPY poetry.lock /