service-wallabag/Dockerfile

10 lines
348 B
Text
Raw Permalink Normal View History

2024-07-06 16:26:48 +00:00
FROM wallabag/wallabag:2.6.9
# Copy custom entrypoint script
2024-07-08 20:29:41 +00:00
COPY --chown=root:root --chmod=755 parse-database-url.sh /usr/local/bin/parse-database-url.sh
COPY --chown=root:root --chmod=755 entrypoint-wrapper.sh /usr/local/bin/entrypoint-wrapper.sh
2024-07-06 16:26:48 +00:00
# Set the custom entrypoint
2024-07-08 20:29:41 +00:00
ENTRYPOINT ["/usr/local/bin/entrypoint-wrapper.sh"]
CMD ["wallabag"]