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