Files
moveonjoy-m3u/Dockerfile
Brock H Caldwell 9f108a78c0
Some checks failed
Update EPG (m3u4u) / update-files (push) Failing after 19s
Update EPG / update-files (push) Failing after 34s
[] feat: runs every night at 1am
2025-02-17 15:54:05 -06:00

12 lines
203 B
Docker

FROM python:3.12-alpine
RUN apk update && apk add openssh
COPY ./ /app
COPY --chmod=0600 ./build/id_rsa /root/.ssh/
RUN pip3 install requests
WORKDIR /app
CMD ["python3", "./epg-grabber/getEpgs.py"]