Files
docker-epg/Dockerfile
Dnny44 0dacb81413
All checks were successful
Build and Push Image / Build and push image (push) Successful in 2m55s
Update CMD to JSON
2024-08-08 13:53:02 -05:00

13 lines
344 B
Docker

FROM node:20-slim
RUN apt-get update && apt-get install -y git python3
RUN mkdir /epg
RUN git clone --depth 1 -b master https://github.com/iptv-org/epg.git /epg
RUN mkdir /epg/channels
COPY channels.xml /epg/channels/
WORKDIR /epg
RUN npm install
CMD ["npm", "run", "grab", "--", "--cron", "0 3 * * *" "--channels", "channels/channels.xml"]