infra/docker/wallabag/Dockerfile

14 lines
376 B
Docker
Raw Normal View History

2022-11-23 05:06:13 +00:00
FROM wallabag/wallabag:2.5.2
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"]