From 9aba6ce9370662aa9d481a61f471f2d129085899 Mon Sep 17 00:00:00 2001 From: hw-iu <171809906+hw-iu@users.noreply.github.com> Date: Sun, 21 Jul 2024 17:13:24 +0200 Subject: [PATCH] no Debian backports needed anymore --- build/Dockerfile | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/build/Dockerfile b/build/Dockerfile index 1cbcd4a..e5c580c 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -3,17 +3,12 @@ LABEL maintainer=henri@nagstamon.de ARG DEBIAN_FRONTEND=noninteractive -# need to add backports for newer git - otherwise python3 git module won't work -RUN echo "deb http://deb.debian.org/debian buster-backports main" > /etc/apt/sources.list.d/buster-backports.list - # python3 and git needed for build-modify-extension.py RUN apt -y update && \ - apt -y install python3 \ + apt -y install git \ + python3 \ python3-git -# need to add backports for newer git - otherwise python3 git module won't work -RUN apt -y install -t buster-backports git - # scripts used need to be executable COPY build/build-entrypoint.sh build/build-modify-extension.py / RUN chmod +x /build-entrypoint.sh /build-modify-extension.py