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