Git add for test
This commit is contained in:
23
ubuntu-nettools/Dockerfile
Normal file
23
ubuntu-nettools/Dockerfile
Normal file
@@ -0,0 +1,23 @@
|
||||
FROM ubuntu:24.04
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get install -y net-tools \
|
||||
nano \
|
||||
vim \
|
||||
ca-certificates \
|
||||
iputils-ping \
|
||||
iproute2 \
|
||||
curl \
|
||||
wget && \
|
||||
apt-get clean && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
RUN useradd -ms /bin/bash testuser
|
||||
|
||||
USER testuser
|
||||
|
||||
WORKDIR /home/testuser
|
||||
|
||||
CMD ["/bin/bash"]
|
||||
|
||||
## Pentru build: docker build -t ubuntu-nettools:0.0.1 .
|
||||
Reference in New Issue
Block a user