2023-06-05 18:05:17 -05:00
|
|
|
FROM python:alpine3.18
|
|
|
|
WORKDIR /
|
|
|
|
COPY . opt
|
2023-06-19 18:46:37 -05:00
|
|
|
RUN apk add --no-cache supercronic
|
2023-06-05 18:05:17 -05:00
|
|
|
RUN pip install requests
|
|
|
|
RUN crontab /opt/crontab
|
|
|
|
RUN chmod +x /opt/entrypoint.sh
|
|
|
|
CMD ["/opt/entrypoint.sh"]
|