So instead, I will need to make the scheduled job run inside the Docker container itself, assuming that the container will be running constantly and can be restarted on failure. FROM ubuntu:latest SHELL [ "/bin/bash" , "-c" ] COPY entrypoint.sh entrypoint.sh COPY airdata_cron /etc/cron.d/airdata_cron COPY src/requirements.txt requirements.txt RUN apt-get update \ && chmod +x entrypoint.sh \ && chmod 0644 /etc/cron.d/airdata_cron \ && apt-get -y install cron \ && apt-get -y install python3.8 python3.8-venv python3.8-distutils python3.8-dev \ && python3 -m venv airdata_env \ && source airdata_env/bin/activate \ && pip install -r requirements.txt RUN crontab /etc/cron.d/airdata_cron RUN touch /var/log/air_log.log ENTRYPOINT [ "cron" , "-f" ] Once the image is imported, I can bootstrap a…