FROM python:3.12-bookworm LABEL MAINTAINER="Jan-Ole Hübner " RUN apt-get update && apt-get install -y cron ADD requirements.txt / RUN pip3 install -r /requirements.txt ENV PYTHONIOENCODING=utf-8 ADD . / RUN printenv > /env RUN echo "*/2 * * * * /delay_price.sh >> /var/log/cron.log 2>&1" > /etc/cron.d/get_price RUN chmod 0644 /etc/cron.d/get_price RUN crontab /etc/cron.d/get_price RUN touch /var/log/cron.log RUN chmod 755 /pulse.py /get_price.py /start.sh /delay_price.sh CMD ["./start.sh"]