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