Skip to content

Commit

Permalink
added packages apt-utils ca-certificates
Browse files Browse the repository at this point in the history
Because Github CI build is 

1.  Slow and in log it is showing because "apt-utils" not installed 

2. to avoid CI build to exits with error without having certificate
added packages apt-utils ca-certificates

Because Github CI build is 

1.  Slow and in log it is showing because "apt-utils" not installed 

2. to avoid CI build to exits with error without having certificate
added packages apt-utils ca-certificates

Because CI build is 

1.  Slow and in log it is showing because "apt-utils" not installed 

2. to avoid CI build to exits with error without having certificate
added packages apt-utils ca-certificates

Because CI build is 

1.  Slow and in log it is showing because "apt-utils" not installed 

2. to avoid CI build to exits with error without having certificate
added packages apt-utils ca-certificates

Because Github CI build is 

1.  Slow and in log it is showing because "apt-utils" not installed 

2. to avoid CI build to exits with error without having certificate
added packages apt-utils ca-certificates

Because Github CI build is 

1.  Slow and in log it is showing because "apt-utils" not installed 

2. to avoid CI build to exits with error without having certificate
  • Loading branch information
Rajpratik71 committed Mar 6, 2020
1 parent 3ca5263 commit e45aac1
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion hooks/nvidia-bootstrap/image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ FROM debian:jessie
# ^ Cannot be Alpine since it does not support systemctl
# ^ Systemctl is used to restart kubelet upon successful run of run.sh

RUN apt-get update && apt-get --no-install-recommends -yq install curl jq
RUN apt-get update && apt-get --no-install-recommends -yq install apt-utils ca-certificates apt-transport-https curl jq

ADD run.sh /run.sh

Expand Down
2 changes: 1 addition & 1 deletion images/dns-controller-builder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ FROM k8s.gcr.io/debian-base-amd64:0.3
# git (for getting the current head)
# gcc make (for compilation)
RUN apt-get update && apt-get --no-install-recommends install --yes --reinstall lsb-base \
&& apt-get --no-install-recommends install --yes curl git gcc make bash \
&& apt-get --no-install-recommends install --yes curl git gcc make bash apt-utils ca-certificates apt-transport-https \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

Expand Down
2 changes: 1 addition & 1 deletion images/dns-controller/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
FROM k8s.gcr.io/debian-base-amd64:0.3

# ca-certificates: Needed to talk to EC2 API
RUN apt-get update && apt-get --no-install-recommends install --yes ca-certificates \
RUN apt-get update && apt-get --no-install-recommends install --yes apt-utils ca-certificates apt-transport-https \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

Expand Down
2 changes: 1 addition & 1 deletion images/protokube-builder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ FROM k8s.gcr.io/debian-base-amd64:0.3
# git (for getting the current head)
# gcc make (for compilation)
RUN apt-get update && apt-get --no-install-recommends install --yes --reinstall lsb-base \
&& apt-get --no-install-recommends install --yes curl git gcc make bash \
&& apt-get --no-install-recommends install --yes apt-utils ca-certificates apt-transport-https curl git gcc make bash \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

Expand Down
2 changes: 1 addition & 1 deletion images/protokube/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ FROM k8s.gcr.io/debian-base-amd64:0.3
# ca-certificates: Needed to talk to EC2 API
# e2fsprogs: Needed to mount / format ext4 filesytems
RUN apt-get update && apt-get --no-install-recommends install --yes \
bash ca-certificates e2fsprogs systemd \
bash apt-utils ca-certificates apt-transport-https e2fsprogs systemd \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

Expand Down
2 changes: 1 addition & 1 deletion images/utils-builder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ deb http://security.debian.org jessie/updates main\n \
deb-src http://security.debian.org jessie/updates main\n \
deb-src http://ftp.us.debian.org/debian/ jessie main" > /etc/apt/sources.list

RUN apt-get update && apt-get --no-install-recommends install --yes dpkg-dev bash \
RUN apt-get update && apt-get --no-install-recommends install --yes apt-utils ca-certificates apt-transport-https dpkg-dev bash \
&& apt-get build-dep --yes socat conntrack \
&& apt-get clean

Expand Down

0 comments on commit e45aac1

Please sign in to comment.