From f01cb6703710b7df4c7c022047cd35e1d5e9c70e Mon Sep 17 00:00:00 2001 From: l3wdfut4pwr Date: Sat, 14 Mar 2026 16:38:22 +0200 Subject: docker fix test --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile index 8d5509c..ba09145 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,14 +9,16 @@ ENV POETRY_VERSION=2.3.2 \ POETRY_VIRTUALENVS_CREATE=false RUN apt-get update \ - && apt-get install -y curl \ + && apt-get install -y \ + curl \ + build-essential \ + libffi-dev \ && rm -rf /var/lib/apt/lists/* RUN curl -sSL https://install.python-poetry.org | python3 ENV PATH="/root/.local/bin:$PATH" -# install dependencies (docker cache layer) COPY pyproject.toml poetry.lock* ./ RUN poetry install --no-root --only main -- cgit v1.3-3-g829e