initial dockerfile

This commit is contained in:
2024-08-05 15:02:24 -05:00
parent d558204e0a
commit 4fa0a31af7

View File

@@ -1,4 +1,10 @@
# Basic nginx dockerfile starting with Ubuntu 20.04
FROM ubuntu:20.04
RUN apt-get -y update
RUN apt-get -y install nginx
FROM node:20-slim
RUN apt-get update && apt-get install -y git
RUN mkdir /epg
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=abc.net.au