From 1769fc6d34b1132862a338cf55668ca1768fd29d Mon Sep 17 00:00:00 2001 From: Ben Sarmiento Date: Thu, 8 Feb 2024 01:23:17 +0100 Subject: [PATCH] Add libxml2-utils to Docker container to make plex_update work inside it --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2bba5a7..f1e6e6d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ COPY ./healthcheck.sh /app/healthcheck.sh RUN chmod +x /app/healthcheck.sh COPY config.example.yml /app/config.yml # Install runtime dependencies and configure FUSE -RUN apk add curl python3 +RUN apk add curl python3 libxml2-utils HEALTHCHECK --interval=60s --timeout=60s --start-period=10s --retries=10 CMD /app/healthcheck.sh