| FROM python:3.12-slim | |
| ENV PYTHONDONTWRITEBYTECODE=1 \ | |
| PYTHONUNBUFFERED=1 \ | |
| SMOS_DATA_DIR=/data | |
| WORKDIR /app | |
| COPY requirements.txt . | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| COPY app.py . | |
| COPY index.html styles.css site.js ./ | |
| COPY static ./static | |
| COPY modules ./modules | |
| RUN mkdir -p /data | |
| EXPOSE 10000 | |
| CMD ["sh", "-c", "uvicorn app:app --host 0.0.0.0 --port ${PORT:-10000} --proxy-headers"] | |