2023-09-20 23:28:10 +03:00
|
|
|
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 \
|
2023-09-22 13:06:07 +03:00
|
|
|
&& pip3 install requests \
|
|
|
|
&& apt-get install nano
|
|
|
|
|
2023-09-20 23:28:10 +03:00
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|