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

Signed-off-by: Pratik Raj <[email protected]>
  • Loading branch information
Rajpratik71 committed Aug 18, 2020
1 parent eba18f8 commit 7219916
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
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
1 change: 1 addition & 0 deletions images/mkdocs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ RUN apk add --no-cache \
&& rm -r /root/.cache \
&& rm -rf /var/cache/apk/*


COPY requirements.txt /requirements.txt
RUN pip install -U -r /requirements.txt

Expand Down
1 change: 1 addition & 0 deletions node-authorizer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ LABEL Name=node-authorizer \
Url=https://github.com/kubernetes/kops \
Help=https://github.com/kubernetes/kops\issues


ADD bin/node-authorizer /node-authorizer
COPY --from=ssl /etc/ssl /etc/ssl

Expand Down

0 comments on commit 7219916

Please sign in to comment.