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
317 B
Docker
14 lines
317 B
Docker
3 years ago
|
FROM alpine:3.14
|
||
|
|
||
|
RUN apk --update add py3-pip && \
|
||
|
pip3 install requests
|
||
|
|
||
|
COPY DB15-Volunteer-Schedule-raw.csv /DB15-Volunteer-Schedule-raw.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"]
|