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