devops - dev container, changed packages:
Some checks failed
/ build-docker-image (push) Failing after 13s

+ ansible from pips
 + network utils
 + yq
This commit is contained in:
2025-12-09 00:14:28 +00:00
parent 828d5039dc
commit 29f311a0e4
2 changed files with 15 additions and 1 deletions

View File

@@ -11,15 +11,28 @@ RUN apt-get update && apt-get install -y \
python3 \
python3-pip \
jq \
yq \
ca-certificates \
software-properties-common \
ansible \
rclone \
rsync \
iputils-ping \
dnsutils \
net-tools \
iproute2 \
traceroute \
mtr \
netcat-openbsd \
nmap \
&& rm -rf /var/lib/apt/lists/*
# --- Install Helm ---
RUN pip3 install --upgrade pip \
&& pip3 install ansible
# --- Install kubectl ---
RUN curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" \
&& install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl \