1
0
Fork 0
mirror of https://github.com/ublue-os/forge.git synced 2025-04-30 18:14:37 +03:00
ublue-forge/minica/Containerfile
2023-05-04 18:56:06 +00:00

14 lines
255 B
Docker

# Source Image
FROM docker.io/library/golang:1.20
# 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"]