Bindlog/Dockerfile
2024-08-28 22:14:28 +02:00

14 lines
369 B
Docker

# Utiliser une image de base debian
FROM debian:12
# Installation des paquets nécéssaire au bon fonctionnement du Docker
RUN apt-get update
RUN apt-get install -y bind nano wget
# Installation des paquets recommander au bon fonctionnement du Docker
RUN apt-get install -y curl net-tools apache2 btop
CMD ["/usr/sbin/sshd", "-D"]
RUN touch /opt/test/healthly.txt