From 8552fcfa872c6e9263b9c7b5e7e96c730a6811cc Mon Sep 17 00:00:00 2001 From: sbcrumb Date: Sat, 4 Oct 2025 11:01:56 -0400 Subject: [PATCH] Fix Docker entrypoint to use modular main.py instead of monolithic nfoguard.py - Update Dockerfile to exec main.py instead of deleted nfoguard.py - Fixes container startup failure after monolithic code removal - Version bump to 2.0.3 for Docker compatibility fix --- Dockerfile | 2 +- VERSION | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index fcfcb37..35ba254 100644 --- a/Dockerfile +++ b/Dockerfile @@ -51,7 +51,7 @@ RUN mkdir -p /app/emby-plugin && \ echo ' echo "No Emby plugins directory found - skipping plugin deployment"' >> /app/deploy-plugin.sh && \ echo ' echo "To enable plugin deployment, bind mount your Emby plugins directory to /emby-plugins"' >> /app/deploy-plugin.sh && \ echo 'fi' >> /app/deploy-plugin.sh && \ - echo 'exec python -u nfoguard.py' >> /app/deploy-plugin.sh && \ + echo 'exec python -u main.py' >> /app/deploy-plugin.sh && \ chmod +x /app/deploy-plugin.sh # Set ownership diff --git a/VERSION b/VERSION index f93ea0c..6acdb44 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.0.2 \ No newline at end of file +2.0.3 \ No newline at end of file