From f80178afa59f072e0b73576327d2fb1d3b7104db Mon Sep 17 00:00:00 2001 From: Tim Fischer Date: Mon, 2 Sep 2024 13:12:14 +0200 Subject: [PATCH] container: debug build --- util/container/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/util/container/Dockerfile b/util/container/Dockerfile index fc52fa709..f5dd3779b 100644 --- a/util/container/Dockerfile +++ b/util/container/Dockerfile @@ -19,10 +19,10 @@ RUN add-apt-repository ppa:deadsnakes/ppa && \ wget \ git \ tar \ - software-properties-common && \ - add-apt-repository ppa:deadsnakes/ppa -y && \ + software-properties-common +# python needs `software-properties-common` to add the deadsnakes PPA +RUN add-apt-repository ppa:deadsnakes/ppa -y && \ apt update && \ - # python needs `software-properties-common` to add the deadsnakes PPA apt install -y python3.11 # Build Rust tools