diff options
| author | l3wdfut4pwr <l3wdfut4pwr@gmail.com> | 2026-03-14 16:38:22 +0200 |
|---|---|---|
| committer | l3wdfut4pwr <l3wdfut4pwr@gmail.com> | 2026-03-14 16:38:22 +0200 |
| commit | f01cb6703710b7df4c7c022047cd35e1d5e9c70e (patch) | |
| tree | 1d81cb71eda2c5146b00fc46bd42f44009c60df5 | |
| parent | fb3a8d60228097dde6f6c71ea4a5dce1674e1fe1 (diff) | |
docker fix test
| -rw-r--r-- | Dockerfile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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 |
