ublue-forge/minica/Containerfile

14 lines
327 B
Plaintext
Raw Normal View History

# Source Image
FROM docker.io/library/golang:1.24@sha256:270cd5365c84dd24716c42d7f9f7ddfbc131c8687e163e6748b9c1322c518213
# 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 21:56:06 +03:00
CMD ["/certs/certificates.sh"]