9 lines
217 B
Docker
9 lines
217 B
Docker
FROM nextcloud:21.0.0-apache
|
|
|
|
# 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
|
|
EXPOSE 80
|