2023-06-16 02:11:08 -05:00
|
|
|
from alpine:latest
|
|
|
|
RUN apk add --no-cache curl
|
2023-06-16 02:58:13 -05:00
|
|
|
COPY crontab opt
|
|
|
|
COPY entrypoint.sh opt
|
|
|
|
COPY phc.sh opt
|
2023-06-16 02:11:08 -05:00
|
|
|
RUN crontab /opt/crontab
|
|
|
|
RUN chmod +x /opt/entrypoint.sh
|
2023-06-16 02:21:05 -05:00
|
|
|
RUN chmod +x /opt/phc.sh
|
2023-06-16 02:11:08 -05:00
|
|
|
CMD ["/opt/entrypoint.sh"]
|