From e25ff06a742265c6fda7032bf00a074d530849df Mon Sep 17 00:00:00 2001 From: Riku Silvennoinen Date: Wed, 18 Oct 2023 09:38:50 +0300 Subject: [PATCH] Delete Dockerfile --- Dockerfile | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 02d9b1e..0000000 --- a/Dockerfile +++ /dev/null @@ -1,20 +0,0 @@ -FROM ubuntu/nginx:1.18-22.04_beta -ENV TZ=Europe/Helsinki - -RUN apt-get update \ - && apt-get install -y python3-pip \ - && pip3 install geopandas \ - && pip3 install pandas geopy \ - && pip3 install requests \ - && apt-get install nano - - -COPY index.html /var/www/html/index.html - -COPY script.py /var/www/html/script.py - -CMD chmod +x /var/www/html/script.py - -CMD python3 /var/www/html/script.py - -