Files
glpi-airwatch-sync/dockerfile

10 lines
252 B
Plaintext

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"]