2022-06-25 14:19:15 +00:00
|
|
|
FROM wallabag/wallabag:2.5.1
|
2021-01-09 02:42:55 +00:00
|
|
|
|
|
|
|
# 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
|
2021-07-30 04:57:54 +00:00
|
|
|
COPY files/entrypoint.sh /usr/local/bin/entrypoint.sh
|
2021-01-09 02:42:55 +00:00
|
|
|
|
|
|
|
# update ca certs
|
|
|
|
RUN update-ca-certificates 2>/dev/null
|
2021-07-30 04:57:54 +00:00
|
|
|
|
|
|
|
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
|