7 lines
212 B
Docker
7 lines
212 B
Docker
FROM debian:12-slim
|
|
RUN apt-get update && apt-get install -y apache2 \
|
|
curl netcat-openbsd nmap openssl iputils-ping dnsutils \
|
|
ntpdate net-tools mbpoll snmp wget \
|
|
&& apt-get clean
|
|
CMD ["/bin/bash"]
|