[Bug Fix] Fix dockerfile not copying correct folder to wwwroot (#2425)

This commit is contained in:
TheDarkMage 2023-11-10 12:55:47 -05:00 committed by GitHub
parent 1176270514
commit 2f6e76fbe4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,7 +8,7 @@ ARG TARGETPLATFORM
#Move the output files to where they need to be #Move the output files to where they need to be
RUN mkdir /files RUN mkdir /files
COPY _output/*.tar.gz /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 COPY copy_runtime.sh /copy_runtime.sh
RUN /copy_runtime.sh RUN /copy_runtime.sh
RUN chmod +x /Kavita/Kavita RUN chmod +x /Kavita/Kavita