Ajouter Dockerfile
This commit is contained in:
parent
1d3b46ecd2
commit
d9187df24c
14
Dockerfile
Normal file
14
Dockerfile
Normal file
@ -0,0 +1,14 @@
|
||||
# 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
|
Loading…
Reference in New Issue
Block a user