Updated docker files

This commit is contained in:
2025-07-10 23:05:00 +02:00
parent 5eb7b6b778
commit 84c52ae234
6 changed files with 92 additions and 94 deletions

View File

@ -1,10 +1,10 @@
FROM debian
FROM python
RUN <<-EOF
apt-get update
apt-get install -y systemd python3 python3-cryptography python3-requests python3-toml
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"]
ADD pre-start.py /
ADD start.sh /
RUN chmod u+x /start.sh
ENTRYPOINT ["/start.sh"]