Compare commits

..

2 Commits

Author SHA1 Message Date
1d92b0519c Fixed CMD
Some checks failed
Build and Push Image / Build and push image (push) Failing after 2m16s
2024-08-08 13:00:56 -05:00
f90951e308 moved channels inside epg 2024-08-08 12:59:54 -05:00

View File

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