From d543ce0ddec6cd1ea29f750a88dcc8da6d526cb4 Mon Sep 17 00:00:00 2001 From: DieselTech <30128380+DieselTech@users.noreply.github.com> Date: Thu, 10 Jul 2025 11:45:35 -0400 Subject: [PATCH] Update Dockerfile (#3911) --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index bfc253c0e..cd8392584 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ #This Dockerfile creates a build for all architectures #Image that copies in the files and passes them to the main image -FROM ubuntu:focal AS copytask +FROM ubuntu:noble AS copytask ARG TARGETPLATFORM @@ -16,7 +16,7 @@ RUN /copy_runtime.sh RUN chmod +x /Kavita/Kavita #Production image -FROM ubuntu:focal +FROM ubuntu:noble COPY --from=copytask /Kavita /kavita COPY --from=copytask /files/wwwroot /kavita/wwwroot @@ -24,7 +24,7 @@ COPY API/config/appsettings.json /tmp/config/appsettings.json #Installs program dependencies RUN apt-get update \ - && apt-get install -y libicu-dev libssl1.1 libgdiplus curl \ + && apt-get install -y libicu-dev libgdiplus curl \ && rm -rf /var/lib/apt/lists/* COPY entrypoint.sh /entrypoint.sh