diff --git a/Dockerfile b/Dockerfile index 473fb31..4c8c224 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,9 +2,13 @@ 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 WORKDIR /epg RUN npm install -CMD npm run grab -- --site=tvtv.us \ No newline at end of file +RUN mkdir /channels +COPY channels.xml /channels/channels.xml + +CMD npm run grab -- --channels /channels/channels.xml \ No newline at end of file diff --git a/channels.xml b/channels.xml new file mode 100644 index 0000000..fc12b0f --- /dev/null +++ b/channels.xml @@ -0,0 +1,4 @@ + + + Disney Channel East + \ No newline at end of file