diff --git a/Dockerfile b/Dockerfile index 7233214f6..7512c0d1e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,9 +20,13 @@ COPY --from=copytask /files/wwwroot /kavita/wwwroot #Installs program dependencies RUN apt-get update \ - && apt-get install -y libicu-dev libssl1.1 libgdiplus curl\ + && apt-get install -y libicu-dev libssl1.1 libgdiplus curl \ + && apt-get install -y libvips --no-install-recommends \ && rm -rf /var/lib/apt/lists/* +#Removes the libvips.so.42 file to fix the AVX CPU requirement issue +RUN rm /kavita/libvips.so.42 + COPY entrypoint.sh /entrypoint.sh EXPOSE 5000