ublue-forge/minica/Containerfile

14 lines
327 B
Text
Raw Normal View History

# Source Image
FROM docker.io/library/golang:1.24@sha256:1bb140b73b0c33df854496d07cb8d05ac62b358923ab513c18ede977f880c8b6
# 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
2023-05-04 18:56:06 +00:00
CMD ["/certs/certificates.sh"]