Skip to content

Commit

Permalink
Add root CAs (#1419)
Browse files Browse the repository at this point in the history
  • Loading branch information
ash2k authored and pmorie committed Oct 18, 2017
1 parent b49a76a commit 819332e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions build/apiserver/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@

FROM BASEIMAGE

RUN export DEBIAN_FRONTEND=noninteractive && \
apt-get update && \
apt-get install ca-certificates -y && \
rm -rf /var/lib/apt/lists/*

ADD apiserver /opt/services/

ENTRYPOINT ["/opt/services/apiserver"]
Expand Down
5 changes: 5 additions & 0 deletions build/controller-manager/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@

FROM BASEIMAGE

RUN export DEBIAN_FRONTEND=noninteractive && \
apt-get update && \
apt-get install ca-certificates -y && \
rm -rf /var/lib/apt/lists/*

ADD controller-manager /opt/services/

ENTRYPOINT ["/opt/services/controller-manager" ]

0 comments on commit 819332e

Please sign in to comment.