Ajout des fichiers pour la création de l'image docker

This commit is contained in:
2025-07-10 21:30:49 +02:00
parent b63ff9d788
commit 43c4ba4639
6 changed files with 126 additions and 4 deletions

10
dockerfile Normal file
View File

@ -0,0 +1,10 @@
FROM python
RUN <<-EOF
apt-get update
apt-get install -y python3-cryptography python3-requests python3-toml
EOF
ADD scripts\* /airwatchConnector
ADD services.py
ADD create_services.sh
RUN chmod u+x /create_services.sh
ENTRYPOINT ["/create_services.sh"]