Skip to content

Commit

Permalink
Don't install recommended packages in kic base image (#6589)
Browse files Browse the repository at this point in the history
This reduces base image size from 816MB to 673MB (17.5% reduction)
  • Loading branch information
priyawadhwa authored Feb 11, 2020
1 parent ff763db commit b0edc72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hack/images/kicbase.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ARG COMMIT_SHA
# could be changed to any debian that can run systemd
FROM kindest/base:v20200122-2dfe64b2
USER root
RUN apt-get update && apt-get install -y \
RUN apt-get update && apt-get install -y --no-install-recommends \
sudo \
dnsutils \
openssh-server \
Expand Down

0 comments on commit b0edc72

Please sign in to comment.