mirror of
https://github.com/ublue-os/forge.git
synced 2025-07-04 00:41:18 +03:00
14 lines
327 B
Docker
14 lines
327 B
Docker
# Source Image
|
|
FROM docker.io/library/golang:1.24@sha256:e84f2e80dc8ab2cd38c6e028f6e569f6ae54c08ad4caee492a596275086a2fa5
|
|
|
|
# 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"]
|