summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorl3wdfut4pwr <l3wdfut4pwr@gmail.com>2026-03-14 16:38:22 +0200
committerl3wdfut4pwr <l3wdfut4pwr@gmail.com>2026-03-14 16:38:22 +0200
commitf01cb6703710b7df4c7c022047cd35e1d5e9c70e (patch)
tree1d81cb71eda2c5146b00fc46bd42f44009c60df5
parentfb3a8d60228097dde6f6c71ea4a5dce1674e1fe1 (diff)
docker fix test
-rw-r--r--Dockerfile6
1 files changed, 4 insertions, 2 deletions
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