phc/Dockerfile
jblu c4ffcee3a3
All checks were successful
continuous-integration/drone/push Build is passing
changed to supercronic
2023-06-19 19:01:44 -05:00

9 lines
231 B
Docker

from alpine:latest
RUN apk add --no-cache curl,supercronic
COPY crontab opt
COPY entrypoint.sh opt
COPY phc.sh opt
RUN crontab /opt/crontab
RUN chmod +x /opt/entrypoint.sh
RUN chmod +x /opt/phc.sh
CMD ["/opt/entrypoint.sh"]