You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
495 B
16 lines
495 B
FROM adoptopenjdk:11-jre-hotspot
|
|
|
|
RUN curl -L -o /usr/local/bin/mkcert https://github.com/FiloSottile/mkcert/releases/download/v1.4.1/mkcert-v1.4.1-linux-amd64 \
|
|
&& chmod 755 /usr/local/bin/mkcert
|
|
|
|
ADD run.sh /usr/local/bin/run.sh
|
|
|
|
ENV PATH="/usr/local/bin:${PATH}"
|
|
ENV CAROOT=/certs/ TRUST_STORES=""
|
|
ENV SERVER_HOSTNAMES="docker.for.mac.localhost docker.for.win.localhost microcks-keycloak"
|
|
ENV JKS_PASSWORD="super-secret"
|
|
|
|
VOLUME /certs
|
|
WORKDIR /certs
|
|
|
|
ENTRYPOINT [ "/usr/local/bin/run.sh" ]
|
|
|