From 04e0ec84ce220a7f9cab9d309a8daa99ee052fce Mon Sep 17 00:00:00 2001 From: Milot Mirdita Date: Tue, 13 Jun 2023 16:52:39 +0900 Subject: [PATCH] Install cmake from normal apt repository, shouldn't need backports anymore --- Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 81ee065d..a2082db0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,11 +6,9 @@ ARG APP RUN dpkg --add-architecture $TARGETARCH \ && apt-get update \ && apt-get install -y \ - build-essential curl xxd git \ + build-essential curl xxd git cmake \ zlib1g-dev libbz2-dev libatomic1 \ crossbuild-essential-$TARGETARCH zlib1g-dev:$TARGETARCH libbz2-dev:$TARGETARCH \ - && apt install -y -t $(awk -F'=' '$1 == "VERSION_CODENAME" { print $2 }' /etc/os-release)-backports --no-install-suggests --no-install-recommends \ - cmake \ && rm -rf /var/lib/apt/lists/* RUN if [ "$TARGETARCH" = "arm64" ]; then \