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