Add libxml2-utils to Docker container to make plex_update work inside it

This commit is contained in:
Ben Sarmiento
2024-02-08 01:23:17 +01:00
parent c3ce271fdf
commit 1769fc6d34

View File

@@ -15,7 +15,7 @@ COPY ./healthcheck.sh /app/healthcheck.sh
RUN chmod +x /app/healthcheck.sh RUN chmod +x /app/healthcheck.sh
COPY config.example.yml /app/config.yml COPY config.example.yml /app/config.yml
# Install runtime dependencies and configure FUSE # 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 HEALTHCHECK --interval=60s --timeout=60s --start-period=10s --retries=10 CMD /app/healthcheck.sh