File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ FROM alpine:3.9
3
3
RUN set -ex \
4
4
&& echo "http://nl.alpinelinux.org/alpine/edge/main" >> /etc/apk/repositories \
5
5
&& echo "http://nl.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories \
6
+ && echo "http://nl.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories \
6
7
&& apk update \
7
8
&& apk upgrade \
8
9
&& apk add --no-cache \
@@ -39,14 +40,16 @@ RUN set -ex \
39
40
openssl \
40
41
py-crypto \
41
42
py2-virtualenv \
42
- python2 \
43
43
scapy \
44
44
socat \
45
45
strace \
46
46
tcpdump \
47
47
tcptraceroute \
48
48
util-linux \
49
- vim
49
+ vim \
50
+ httpie
51
+
52
+
50
53
51
54
# apparmor issue #14140
52
55
RUN mv /usr/sbin/tcpdump /usr/bin/tcpdump
@@ -55,7 +58,7 @@ RUN mv /usr/sbin/tcpdump /usr/bin/tcpdump
55
58
RUN wget https://github.com/bcicen/ctop/releases/download/v0.7.1/ctop-0.7.1-linux-amd64 -O /usr/local/bin/ctop && chmod +x /usr/local/bin/ctop
56
59
57
60
# Installing calicoctl
58
- ARG CALICOCTL_VERSION=v3.3.1
61
+ ARG CALICOCTL_VERSION=v3.13.3
59
62
RUN wget https://github.com/projectcalico/calicoctl/releases/download/${CALICOCTL_VERSION}/calicoctl && chmod +x calicoctl && mv calicoctl /usr/local/bin
60
63
61
64
# Settings
You can’t perform that action at this time.
0 commit comments