mirror of
https://github.com/kubernetes/kubernetes.git
synced 2026-07-15 20:53:45 -04:00
7 lines
202 B
Docker
7 lines
202 B
Docker
FROM debian:jessie
|
|
|
|
# All apt-get's must be in one run command or the
|
|
# cleanup has no effect.
|
|
RUN apt-get update && \
|
|
apt-get install -y iptables && \
|
|
ls /var/lib/apt/lists/*debian* | xargs rm
|