From 2f6e76fbe43dfb71101c4fca41ce5257058b9342 Mon Sep 17 00:00:00 2001 From: TheDarkMage Date: Fri, 10 Nov 2023 12:55:47 -0500 Subject: [PATCH] [Bug Fix] Fix dockerfile not copying correct folder to wwwroot (#2425) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cee5486b7..6d52acaba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ ARG TARGETPLATFORM #Move the output files to where they need to be RUN mkdir /files COPY _output/*.tar.gz /files/ -COPY UI/Web/dist /files/wwwroot +COPY UI/Web/dist/browser /files/wwwroot COPY copy_runtime.sh /copy_runtime.sh RUN /copy_runtime.sh RUN chmod +x /Kavita/Kavita