From 21529250247ff6105cb4076046d2a2827a6bc09e Mon Sep 17 00:00:00 2001 From: Luis Garcia Date: Tue, 10 Sep 2024 09:27:27 -0600 Subject: [PATCH] Docker: Install libxml2 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8e5f14e3..54201bf0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,7 +32,7 @@ WORKDIR /app COPY --from=builder /app/target/release/tanoshi . RUN chmod +x tanoshi -RUN apt update && apt upgrade -y && apt install --reinstall -y ca-certificates libssl3 +RUN apt update && apt upgrade -y && apt install --reinstall -y ca-certificates libssl3 libxml2 ENV PORT=80 ENV TANOSHI_LOG=info