Don't install recommended packages in kic base image (#6589)
This reduces base image size from 816MB to 673MB (17.5% reduction)pull/6591/head
parent
ff763db1e7
commit
b0edc720b4
|
@ -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 \
|
||||
|
|
Loading…
Reference in New Issue