Files
tvj-epg/Containerfile
David Folkes 38f232f3e6
All checks were successful
Build and Publish TVJ EPG Image / build (push) Successful in 22s
Update Containerfile
2026-02-03 01:39:23 -05:00

17 lines
258 B
Docker

FROM python:3.11-slim
WORKDIR /app
COPY tvj_epg.py .
COPY tvj.m3u /app/output/tvj.m3u
RUN pip install --no-cache-dir requests
ENV UPDATE_INTERVAL=6
EXPOSE 8787
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]