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