Files
certmonger/Dockerfile
Roman Vaníček 1b38117732
Some checks failed
continuous-integration/drone/push Build is failing
Certmonger docker.
2022-12-09 17:04:46 +01:00

14 lines
228 B
Docker

FROM almalinux
RUN yum update \
&& yum install wget certmonger
COPY createCertChain.sh /createCertChain.sh
COPY entrypoint.sh /entrypoint.sh
RUN mkdir /var/run/dbus
VOLUME /var/lib/certmonger
ENTRYPOINT ["/entrypoint.sh"]