Files
it_school/Ubuntu-nettools/Dockerfile
Ionel Andrei Cataon 9c64748f2f Updated
2026-01-15 19:09:39 +02:00

22 lines
378 B
Docker

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