This commit is contained in:
Ionel Andrei Cataon
2026-01-15 19:09:39 +02:00
parent 002d53928a
commit 9c64748f2f
10 changed files with 482 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
FROM ubuntu:24.04
RUN apt-get update && \
apt-get dist-upgrade -y && \
apt-get install -y \
net-tools \
vim \
ca-certificates \
iputils-ping \
iputils-tracepath \
iproute2 \
curl \
wget \
git \
telnet \
dnsutils
RUN useradd -ms /bin/bash netops
USER netops
WORKDIR /home/netops