moved channels mkdir command
All checks were successful
Build and Push Image / Build and push image (push) Successful in 2m59s

This commit is contained in:
2024-08-08 13:11:57 -05:00
parent f3bf94d190
commit ca1c6eaed5

View File

@@ -2,10 +2,10 @@ 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 /epg/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
RUN mkdir /epg/channels
COPY channels.xml /epg/channels/channels.xml
WORKDIR /epg WORKDIR /epg
RUN npm install RUN npm install