Files
phc/Dockerfile
2026-04-08 18:33:51 -05:00

7 lines
175 B
Docker

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