FROM alpine:3.14 RUN apk --update add py3-pip && \ pip3 install requests COPY DB15VolunteerSchedule-All-Everything.csv /DB15VolunteerSchedule-All-Everything.csv COPY crontab /var/spool/cron/crontabs/root COPY callbot.py /callbot.py COPY entrypoint.sh /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"] CMD ["crond", "-f", "-l", "2"]