CoolFace
Apppublic

abhirsc/spatial-toolkit-py

sourceHugging Facemitupdated 6mo agoView on Hugging Face
0likes
Dockerfile.py19 linesDownload Raw Back to root
1FROM python:3.11-slim2 3WORKDIR /app4 5RUN apt-get update && apt-get install -y \6    gdal-bin \7    libgdal-dev \8    libgeos-dev \9    libproj-dev \10    && rm -rf /var/lib/apt/lists/*11 12COPY . /app13 14RUN pip install --no-cache-dir -e .15 16EXPOSE 786017 18CMD ["streamlit", "run", "python/app.py", "--server.port=7860", "--server.address=0.0.0.0"]19