From f90951e308da89cee14f48d73f8bf32b913b376b Mon Sep 17 00:00:00 2001 From: Dnny44 Date: Thu, 8 Aug 2024 12:59:54 -0500 Subject: [PATCH] moved channels inside epg --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 365c17d..249643c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,12 +2,12 @@ FROM node:20-slim RUN apt-get update && apt-get install -y git python3 RUN mkdir /epg -RUN mkdir /channels -COPY channels.xml /channels +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 -- --site tvtv.us \ No newline at end of file +CMD npm run grab -- -- \ No newline at end of file