From 3d8a5b776a14da24715a26e5d102dc50060c07e0 Mon Sep 17 00:00:00 2001 From: Neshura Date: Sun, 27 Nov 2022 16:12:05 +0100 Subject: [PATCH] Added Dockerfile to repo Will be used by Gitlab CI/CD to auto build the image --- Dockerfile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..c220702 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +# Generate Python Image +FROM python:3.10.8-slim-buster as builder + +WORKDIR /app + +# Copy only the required files over +COPY set_ip.sh cloudflare_script.py config.ini cloudflare.json ./ +RUN ls -a /etc/systemd + +#RUN pip install Cloudflare \ No newline at end of file