mirror of
https://github.com/ublue-os/forge.git
synced 2025-04-12 09:43:44 +03:00
11 lines
251 B
Docker
11 lines
251 B
Docker
# Source Image
|
|
FROM docker.io/library/golang:1.20
|
|
|
|
# Install minica
|
|
RUN go install github.com/jsha/minica@latest
|
|
|
|
# Generate wildcard certificate
|
|
WORKDIR /certs
|
|
RUN minica --domains "*.ublue.local,ublue.local,localhost" \
|
|
--ip-addresses 127.0.0.1
|