added m3u to HTTP server and extracted additional information from api

This commit is contained in:
Lyncoln
2026-02-01 11:38:53 -05:00
parent 4b66debf61
commit 8d8c318478
3 changed files with 217 additions and 51 deletions

View File

@@ -5,6 +5,9 @@ WORKDIR /app
# Copy the EPG script
COPY tvj_epg.py .
# Copy static M3U playlist
COPY tvj.m3u /app/output/tvj.m3u
# Install requests for API fetching
RUN pip install --no-cache-dir requests
@@ -26,4 +29,3 @@ while true; do \
done & \
# Start HTTP server to serve XML file on port 8787 \
cd /app/output && python3 -m http.server 8787'