Skip to content
Snippets Groups Projects
Select Git revision
  • 94e5a44335d9241533b42f90d3819d139bd1e1ac
  • main default protected
  • adjust-certificate
  • OZG-8085-ci-components-poc
  • release
  • KOP-2850-Dev-Deployment-und-Docker-compose-Tests
  • OZG-7121
  • OZG-6831-adjust-service-path
  • 1.10.0
  • 1.9.0
  • 1.8.1
  • 1.8.0
  • 1.7.0
  • 1.6.2
  • 1.6.1
  • 1.6.0
  • 1.4.1
17 results

keystore-truststore-from-tls-secret.dockerfile

Blame
  • keystore-truststore-from-tls-secret.dockerfile 231 B
    FROM alpine:3.21
    
    RUN apk add --no-cache openssl openjdk11
    
    COPY --chown=185 scripts/keystore-truststore-from-tls-secret.sh /opt/
    
    VOLUME /store /tls
    USER 185
    
    ENTRYPOINT [ "/bin/sh", "/opt/keystore-truststore-from-tls-secret.sh" ]