From 9e4e33101234471df8842216c4eeaa8c52c105b7 Mon Sep 17 00:00:00 2001 From: Sthope Date: Wed, 23 Aug 2023 02:10:41 +0200 Subject: [PATCH] Add Dockerfile --- Dockerfile | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..96e4c3f --- /dev/null +++ b/Dockerfile @@ -0,0 +1,30 @@ +# Use an official Node.js runtime as the base image +FROM node:14 + +# Set the working directory inside the container +WORKDIR /app + +# Clone the repository +RUN git clone --depth 1 -b master https://github.com/iptv-org/epg.git + +# Change the working directory to the cloned repository +WORKDIR /app/epg + +# Install necessary dependencies +RUN npm install + +# Set the default environment variable for the selected source +ENV SITE="meo.pt" +ENV I="12h" + +# Expose the port the application will run on +EXPOSE 3000 + +# Copy the custom shell script to the container +COPY run.sh /app/run.sh + +# Make the shell script executable +RUN chmod +x /app/run.sh + +# Command to start both downloading the guide and running the server +CMD ["/app/run.sh"] \ No newline at end of file