Files
certmonger/Dockerfile
Roman Vaníček 0bb9220c8b
Some checks failed
continuous-integration/drone/push Build is failing
FIX certmonger yum install -y
2022-12-09 17:09:56 +01:00

14 lines
231 B
Docker

FROM almalinux
RUN yum update \
&& yum -y 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"]