mirror of
https://github.com/Luzifer/promcertcheck.git
synced 2024-11-08 07:50:05 +00:00
9 lines
245 B
Text
9 lines
245 B
Text
|
FROM scratch
|
||
|
|
||
|
ADD https://rootcastore.hub.luzifer.io/v1/store/latest /etc/ssl/ca-bundle.pem
|
||
|
ADD promcertcheck /promcertcheck
|
||
|
|
||
|
EXPOSE 3000
|
||
|
ENTRYPOINT ["/promcertcheck"]
|
||
|
CMD ["--probe=https://www.google.com/", "--probe=https://www.facebook.com/"]
|