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 - -