Fixing channels path again
All checks were successful
Build and Push Image / Build and push image (push) Successful in 3m6s

This commit is contained in:
2024-08-08 12:35:05 -05:00
parent d81bd6700e
commit c3861809ba

View File

@@ -2,13 +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
COPY channels.xml /channels
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
RUN mkdir /channels
COPY channels.xml /channels
CMD npm run grab -- --channels /channels/channels.xml CMD npm run grab -- --channels /channels/channels.xml