phc/Dockerfile
Jonathan Branan 1ac4eb822c
All checks were successful
continuous-integration/drone/push Build is passing
updated instructions
2023-06-22 03:24:19 -05:00

7 lines
187 B
Docker

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"]