phc/Dockerfile

7 lines
187 B
Docker
Raw Normal View History

2023-06-22 03:24:19 -05:00
FROM alpine:latest
2023-06-22 18:10:45 -05:00
RUN apk add --no-cache curl supercronic
2023-06-19 18:48:37 -05:00
COPY entrypoint.sh opt
COPY phc.sh opt
RUN chmod +x /opt/entrypoint.sh
RUN chmod +x /opt/phc.sh
2023-06-16 02:11:08 -05:00
CMD ["/opt/entrypoint.sh"]