11 lines
272 B
Docker
11 lines
272 B
Docker
|
FROM gitea/gitea:latest
|
||
|
|
||
|
# add ca-certificates package
|
||
|
RUN apk add --no-cache ca-certificates
|
||
|
|
||
|
# Copy masked.name root cert
|
||
|
COPY files/MaskedName_Root_CA.crt /usr/local/share/ca-certificates/MaskedName_Root_CA.crt
|
||
|
|
||
|
# update ca certs
|
||
|
RUN update-ca-certificates 2>/dev/null
|