Skip to content

Instantly share code, notes, and snippets.

@aaron-prindle
Created February 7, 2017 21:57
Show Gist options
  • Save aaron-prindle/b5d228c08c5a7db25be17c4871b99305 to your computer and use it in GitHub Desktop.
Save aaron-prindle/b5d228c08c5a7db25be17c4871b99305 to your computer and use it in GitHub Desktop.
FROM debian:jessie
RUN DEBIAN_FRONTEND=noninteractive apt-get update -y \
&& DEBIAN_FRONTEND=noninteractive apt-get -yy -q install \
iptables \
ethtool \
ca-certificates \
util-linux \
socat \
conntrack \
&& DEBIAN_FRONTEND=noninteractive apt-get upgrade -y \
&& DEBIAN_FRONTEND=noninteractive apt-get autoremove -y \
&& DEBIAN_FRONTEND=noninteractive apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
# Copy over important files
COPY localkube /
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment