From 812d6029d0e5ff7031a90a2821d7b2ca8e9be25c Mon Sep 17 00:00:00 2001 From: InfinityPacer <160988576+InfinityPacer@users.noreply.github.com> Date: Tue, 8 Oct 2024 23:47:59 +0800 Subject: [PATCH] chore: update plugin paths to use plugins.v2 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 054d02f4..344f6c18 100644 --- a/Dockerfile +++ b/Dockerfile @@ -82,7 +82,7 @@ RUN cp -f /app/nginx.conf /etc/nginx/nginx.template.conf \ && curl -sL "https://github.com/jxxghp/MoviePilot-Frontend/releases/download/dev_v2.0.0-alpha/dist.zip" | busybox unzip -d / - \ && mv /dist /public \ && curl -sL "https://github.com/jxxghp/MoviePilot-Plugins/archive/refs/heads/main.zip" | busybox unzip -d /tmp - \ - && mv -f /tmp/MoviePilot-Plugins-main/plugins/* /app/app/plugins/ \ + && mv -f /tmp/MoviePilot-Plugins-main/plugins.v2/* /app/app/plugins/ \ && curl -sL "https://github.com/jxxghp/MoviePilot-Resources/archive/refs/heads/main.zip" | busybox unzip -d /tmp - \ && mv -f /tmp/MoviePilot-Resources-main/resources/* /app/app/helper/ \ && rm -rf /tmp/*