From e5cc8b9628f125fea49dac1d902dee83958fb492 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A0=20Casaj=C3=BAs?= Date: Tue, 7 Nov 2023 11:09:55 +0100 Subject: [PATCH] Update dockerfile to account for new build changes in yacron (#1936) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7c899399..851b7d2d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,7 +23,7 @@ COPY poetry.lock pyproject.toml ./ # Install and setup poetry RUN pip install -U pip \ && apt-get update \ - && apt install -y curl netcat-traditional gcc python3-dev gnupg git libre2-dev \ + && apt install -y curl netcat-traditional gcc python3-dev gnupg git libre2-dev cmake ninja-build\ && curl -sSL https://install.python-poetry.org | python3 - \ # Remove curl and netcat from the image && apt-get purge -y curl netcat-traditional \ @@ -31,7 +31,7 @@ RUN pip install -U pip \ && poetry config virtualenvs.create false \ && poetry install --no-interaction --no-ansi --no-root \ # Clear apt cache \ - && apt-get purge -y libre2-dev \ + && apt-get purge -y libre2-dev cmake ninja-build\ && apt-get clean \ && rm -rf /var/lib/apt/lists/*