7 lines
187 B
Docker
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"] |