Skip to content

Commit c25de77

Browse files
committed
Add apt-transport-https to debian family
Adds possibility to fetch repository via https
1 parent da823c0 commit c25de77

File tree

10 files changed

+12
-0
lines changed

10 files changed

+12
-0
lines changed

docker/bootstrap/debian-7/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ RUN export DEBIAN_FRONTEND=noninteractive \
3030
lsb-release \
3131
ca-certificates \
3232
locales \
33+
apt-transport-https \
3334
# Generate base locale
3435
&& echo "en_US.UTF-8 UTF-8" > /etc/locale.gen \
3536
&& locale-gen \

docker/bootstrap/debian-8/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ RUN export DEBIAN_FRONTEND=noninteractive \
3030
lsb-release \
3131
ca-certificates \
3232
locales \
33+
apt-transport-https \
3334
# Generate base locale
3435
&& echo "en_US.UTF-8 UTF-8" > /etc/locale.gen \
3536
&& locale-gen \

docker/bootstrap/debian-9/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ RUN export DEBIAN_FRONTEND=noninteractive \
3030
lsb-release \
3131
ca-certificates \
3232
locales \
33+
apt-transport-https \
3334
# Generate base locale
3435
&& echo "en_US.UTF-8 UTF-8" > /etc/locale.gen \
3536
&& locale-gen \

docker/bootstrap/ubuntu-12.04/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ RUN export DEBIAN_FRONTEND=noninteractive \
4545
libffi-dev \
4646
libssl-dev \
4747
build-essential \
48+
apt-transport-https \
4849
&& pip install --upgrade pip \
4950
&& hash -r \
5051
&& pip install ansible \

docker/bootstrap/ubuntu-14.04/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ RUN export DEBIAN_FRONTEND=noninteractive \
3030
software-properties-common \
3131
lsb-release \
3232
ca-certificates \
33+
apt-transport-https \
3334
&& apt-add-repository multiverse \
3435
# Install ansible
3536
&& /usr/local/bin/apt-install \

docker/bootstrap/ubuntu-15.04/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ RUN export DEBIAN_FRONTEND=noninteractive \
3030
software-properties-common \
3131
lsb-release \
3232
ca-certificates \
33+
apt-transport-https \
3334
&& apt-add-repository multiverse \
3435
# Install ansible
3536
&& /usr/local/bin/apt-install \

docker/bootstrap/ubuntu-15.10/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ RUN export DEBIAN_FRONTEND=noninteractive \
3030
software-properties-common \
3131
lsb-release \
3232
ca-certificates \
33+
apt-transport-https \
3334
&& apt-add-repository multiverse \
3435
# Install ansible
3536
&& /usr/local/bin/apt-install \

docker/bootstrap/ubuntu-16.04/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ RUN export DEBIAN_FRONTEND=noninteractive \
3030
software-properties-common \
3131
lsb-release \
3232
ca-certificates \
33+
apt-transport-https \
3334
&& apt-add-repository multiverse \
3435
# Install ansible
3536
&& /usr/local/bin/apt-install \

docker/samson-deployment/latest/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ RUN export DEBIAN_FRONTEND=noninteractive \
3535
lsb-release \
3636
ca-certificates \
3737
locales \
38+
apt-transport-https \
3839
# Generate base locale
3940
&& echo "en_US.UTF-8 UTF-8" > /etc/locale.gen \
4041
&& locale-gen \

template/Dockerfile/images/bootstrap.jinja2

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ RUN export DEBIAN_FRONTEND=noninteractive \
7676
lsb-release \
7777
ca-certificates \
7878
locales \
79+
apt-transport-https \
7980
# Generate base locale
8081
&& echo "en_US.UTF-8 UTF-8" > /etc/locale.gen \
8182
&& locale-gen \
@@ -135,6 +136,7 @@ RUN export DEBIAN_FRONTEND=noninteractive \
135136
libffi-dev \
136137
libssl-dev \
137138
build-essential \
139+
apt-transport-https \
138140
&& pip install --upgrade pip \
139141
&& hash -r \
140142
&& pip install ansible \
@@ -165,6 +167,7 @@ RUN export DEBIAN_FRONTEND=noninteractive \
165167
software-properties-common \
166168
lsb-release \
167169
ca-certificates \
170+
apt-transport-https \
168171
&& apt-add-repository multiverse \
169172
# Install ansible
170173
&& /usr/local/bin/apt-install \

0 commit comments

Comments
 (0)