File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,6 @@ RUN set -ex \
29
29
ethtool \
30
30
file\
31
31
fping \
32
- httpie \
33
32
iftop \
34
33
iperf \
35
34
iproute2 \
@@ -49,6 +48,8 @@ RUN set -ex \
49
48
nmap \
50
49
nmap-nping \
51
50
openssl \
51
+ py3-pip \
52
+ py3-setuptools \
52
53
scapy \
53
54
socat \
54
55
strace \
@@ -61,6 +62,9 @@ RUN set -ex \
61
62
zsh \
62
63
websocat
63
64
65
+ # Installing httpie ( https://httpie.io/docs#installation)
66
+ RUN pip3 install --upgrade httpie
67
+
64
68
# Installing ctop - top-like container monitor
65
69
COPY --from=fetcher /tmp/ctop /usr/local/bin/ctop
66
70
Original file line number Diff line number Diff line change 20
20
21
21
get_ctop () {
22
22
VERSION=$( get_latest_release bcicen/ctop | sed -e ' s/^v//' )
23
- LINK=" https://github.com/bcicen/ctop/releases/download/v ${VERSION} /ctop-${VERSION} -linux-${ARCH} "
23
+ LINK=" https://github.com/bcicen/ctop/releases/download/${VERSION} /ctop-${VERSION} -linux-${ARCH} "
24
24
wget " $LINK " -O /tmp/ctop && chmod +x /tmp/ctop
25
25
}
26
26
You can’t perform that action at this time.
0 commit comments