19 lines
614 B
Docker
19 lines
614 B
Docker
FROM debian:12-slim
|
|
|
|
RUN apt update && apt install -y --no-install-recommends \
|
|
bash \
|
|
wget \
|
|
lighttpd \
|
|
curl \
|
|
xmlstarlet \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY xml_tv_ids.txt /data/
|
|
COPY xml_cleaner.sh /opt/
|
|
|
|
# Going to need a static IP adress for this part
|
|
# RUN wget -P /data/ --no-check-certificate https://download2.iptvboss.pro/2da279ce-ce9a-4491-8b92-f72c60e92092/xmlonly/CANADA.xml \
|
|
# && wget -P /data/ --no-check-certificate https://download2.iptvboss.pro/R5SQ-4GRG-KK00-0XQT-JZ67-7TSA-D5O7-UC1U/xmlonly/USA.xml
|
|
|
|
# ENTRYPOINT ["/opt/xml_cleaner.sh"]
|
|
CMD ["bash"] |