From 1c836eea95cd6dac8543b8de50da3016e197c08a Mon Sep 17 00:00:00 2001 From: Nirvana Date: Wed, 17 Jun 2026 11:22:18 +0200 Subject: [PATCH] restructure epg --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 28390e3..f7ccd8d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -90,7 +90,6 @@ RUN echo "=== Validating split structure ===" && \ test -f /app/routes/streams/events.py && echo "✓ routes/streams/events.py" || (echo "✗ MISSING: routes/streams/events.py" && exit 1) && \ test -f /app/routes/streams/vod.py && echo "✓ routes/streams/vod.py" || (echo "✗ MISSING: routes/streams/vod.py" && exit 1) && \ test -f /app/routes/streams/recordings.py && echo "✓ routes/streams/recordings.py" || (echo "✗ MISSING: routes/streams/recordings.py" && exit 1) && \ - test -f /app/routes/streams/epg.py && echo "✓ routes/streams/epg.py" || (echo "✗ MISSING: routes/streams/epg.py" && exit 1) && \ test -f /app/service.py && echo "✓ service.py" || (echo "✗ MISSING: service.py" && exit 1) && \ echo "✓ All split structure files validated successfully!"