phc/Dockerfile

9 lines
219 B
Docker
Raw Normal View History

2023-06-19 18:48:37 -05:00
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
2023-06-16 02:11:08 -05:00
CMD ["/opt/entrypoint.sh"]