no changes
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-06-19 18:48:37 -05:00
parent a650cdda21
commit d89bd69ee5
5 changed files with 65 additions and 65 deletions

View File

@ -1,9 +1,9 @@
from alpine:latest
RUN apk add --no-cache curl
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
from alpine:latest
RUN apk add --no-cache curl
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"]