From 6969c77698c3002c4c82fef28d28e234bf8a1b6c Mon Sep 17 00:00:00 2001 From: Lance Pioch Date: Mon, 19 Jan 2026 12:10:19 -0500 Subject: [PATCH] auto-claude: subtask-1-1 - Fix Dockerfile symlink creation for plugins directory --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 42f394048..a9328569a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -79,7 +79,7 @@ RUN mkdir -p /pelican-data/storage /pelican-data/plugins /var/run/supervisord \ && ln -s /pelican-data/database/database.sqlite ./database/database.sqlite \ && ln -s /pelican-data/storage /var/www/html/public/storage \ && ln -s /pelican-data/storage /var/www/html/storage/app/public \ - && ln -s /pelican-data/plugins /var/www/html \ + && ln -s /pelican-data/plugins /var/www/html/plugins \ # Allow www-data write permissions where necessary && chown -R www-data: /pelican-data .env ./storage ./plugins ./bootstrap/cache /var/run/supervisord /var/www/html/public/storage \ && chmod -R 770 /pelican-data ./storage ./bootstrap/cache /var/run/supervisord \