docker部署使用GDAL包的python应用
FROM ghcr.io/osgeo/gdal:ubuntu-small-latest RUN apt-get update RUN apt-get install pip -y RUN apt-get install git -y RUN pip install --upgrade --no-dependencies -i https://mirrors.aliyun.com/pypi/simple/ -r requirements.txt
...