You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
335 B
Docker

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