Debayan Mandal
Initial Dashboard Upload
acda8b7
raw
history blame contribute delete
510 Bytes
FROM python:3.11-slim
RUN apt-get update && apt-get install -y --no-install-recommends \
libgdal-dev \
gdal-bin \
libgeos-dev \
libproj-dev \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY data_pipeline.py .
COPY dashboard_helpers.py .
COPY app.py .
COPY assets/ assets/
RUN python data_pipeline.py
EXPOSE 7860
CMD ["gunicorn", "app:server", "--bind", "0.0.0.0:7860", "--workers", "2", "--timeout", "120"]