Skip to content

Commit 128c343

Browse files
authored
Merge pull request nicolaka#71 from nicolaka/69-fix
fixing nicolaka#69
2 parents 0349eb1 + 353f707 commit 128c343

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ RUN set -ex \
2929
ethtool \
3030
file\
3131
fping \
32-
httpie \
3332
iftop \
3433
iperf \
3534
iproute2 \
@@ -49,6 +48,8 @@ RUN set -ex \
4948
nmap \
5049
nmap-nping \
5150
openssl \
51+
py3-pip \
52+
py3-setuptools \
5253
scapy \
5354
socat \
5455
strace \
@@ -61,6 +62,9 @@ RUN set -ex \
6162
zsh \
6263
websocat
6364

65+
# Installing httpie ( https://httpie.io/docs#installation)
66+
RUN pip3 install --upgrade httpie
67+
6468
# Installing ctop - top-like container monitor
6569
COPY --from=fetcher /tmp/ctop /usr/local/bin/ctop
6670

build/fetch_binaries.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ esac
2020

2121
get_ctop() {
2222
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}"
2424
wget "$LINK" -O /tmp/ctop && chmod +x /tmp/ctop
2525
}
2626

0 commit comments

Comments
 (0)