Files
docker-epg/Dockerfile
Dnny44 1d92b0519c
Some checks failed
Build and Push Image / Build and push image (push) Failing after 2m16s
Fixed CMD
2024-08-08 13:00:56 -05:00

13 lines
316 B
Docker

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