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