11 lines
278 B
Docker
11 lines
278 B
Docker
FROM wallabag/wallabag: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
|