Jonathan Branan
1ac06a288a
All checks were successful
continuous-integration/drone/push Build is passing
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"] |