Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion Dockerfile.ubuntu2404
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
FROM ubuntu:24.04

RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get -y install python3.12-minimal gawk sed jq tar unzip git curl wget redir socat traceroute net-tools iproute2 iputils-ping mtr-tiny haproxy rsync httpie
apt-get -y upgrade && \
DEBIAN_FRONTEND=noninteractive apt-get -y install python3.12-minimal python3-pip gawk sed jq yq tar unzip git curl wget redir socat traceroute net-tools iproute2 iputils-ping mtr-tiny haproxy rsync httpie ca-certificates && \
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" && \
unzip awscliv2.zip && \
./aws/install && \
rm -rf awscliv2.zip aws && \
apt-get clean && rm -rf /var/lib/apt/lists/*