From 048a0db22a50fb3c5ce325bd91a5cf96435c3a8a Mon Sep 17 00:00:00 2001
From: Julian Brost <julian.brost@icinga.com>
Date: Mon, 13 Dec 2021 15:59:49 +0100
Subject: [PATCH] Install apt-transport-https

Newer Debian version support HTTPS for APT repositories by default, but stretch
needs this additional package. Needed to allow packages.icinga.com to
force-redirect to HTTPS.
---
 stretch/x86/Dockerfile    | 2 +-
 stretch/x86_64/Dockerfile | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/stretch/x86/Dockerfile b/stretch/x86/Dockerfile
index 2f5a79a..a2e88c0 100644
--- a/stretch/x86/Dockerfile
+++ b/stretch/x86/Dockerfile
@@ -7,7 +7,7 @@ RUN apt-get update \
 
 RUN apt-get install -y \
   sudo wget curl tar expect git \
-  devscripts build-essential lintian ccache pbuilder aptitude apt-utils
+  devscripts build-essential lintian ccache pbuilder aptitude apt-utils apt-transport-https
 
 RUN echo "deb http://deb.debian.org/debian stretch-backports main" >/etc/apt/sources.list.d/backports.list
 
diff --git a/stretch/x86_64/Dockerfile b/stretch/x86_64/Dockerfile
index bfbae38..8b26755 100644
--- a/stretch/x86_64/Dockerfile
+++ b/stretch/x86_64/Dockerfile
@@ -7,7 +7,7 @@ RUN apt-get update \
 
 RUN apt-get install -y \
   sudo wget curl tar expect git \
-  devscripts build-essential lintian ccache pbuilder aptitude apt-utils
+  devscripts build-essential lintian ccache pbuilder aptitude apt-utils apt-transport-https
 
 RUN echo "deb http://deb.debian.org/debian stretch-backports main" >/etc/apt/sources.list.d/backports.list
 
-- 
GitLab