crane/Dockerfile
jblu b4d92128df
All checks were successful
continuous-integration/drone/push Build is passing
added supercronic
2023-06-19 18:46:37 -05:00

8 lines
187 B
Docker

FROM python:alpine3.18
WORKDIR /
COPY . opt
RUN apk add --no-cache supercronic
RUN pip install requests
RUN crontab /opt/crontab
RUN chmod +x /opt/entrypoint.sh
CMD ["/opt/entrypoint.sh"]