# Source Image FROM docker.io/library/golang:1.24@sha256:39d9e7d9c5d9c9e4baf0d8fff579f06d5032c0f4425cdec9e86732e8e4e374dc # Copy script WORKDIR /certs COPY certificates.sh . RUN chmod +x ./certificates.sh # Install minica RUN go install github.com/jsha/minica@latest # Container start command CMD ["/certs/certificates.sh"]