-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile
More file actions
31 lines (27 loc) · 736 Bytes
/
Copy pathDockerfile
File metadata and controls
31 lines (27 loc) · 736 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
FROM debian:jessie
RUN DEBAIN_FRONTEND=noninteractive \
apt-get update && \
echo "resolvconf resolvconf/linkify-resolvconf boolean false" | debconf-set-selections && \
apt-get install -qqy \
apt-transport-https \
netcat-openbsd \
curl \
jq \
lsof \
net-tools \
udhcpc \
isc-dhcp-client \
dhcpcd5 \
arping \
ndisc6 \
fping \
sipcalc \
bc \
openvswitch-common \
openvswitch-switch && \
curl -sSL https://get.docker.com/ | sh && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
ADD pipework /usr/sbin/pipework
ADD entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]
CMD ["--help"]