ublue-forge/minica/Containerfile
Stephan Lüscher 717998b801
feat: create ssh key for automation tasks
includes refactoring for build process
2023-05-04 15:02:05 +00:00

13 lines
254 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"]