Created
February 7, 2017 21:57
-
-
Save aaron-prindle/b5d228c08c5a7db25be17c4871b99305 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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