| FROM python:3.11-slim-bookworm AS base | |
| RUN adduser --uid 1000 --disabled-password --gecos '' appuser | |
| USER 1000 | |
| ENV PYTHONDONTWRITEBYTECODE=1 \ | |
| PYTHONUNBUFFERED=1 \ | |
| PATH="/home/appuser/.local/bin:$PATH" | |
| RUN pip install --user --no-cache-dir --upgrade pip | |
| COPY ./requirements.txt /home/appuser/requirements.txt | |
| RUN pip install --user --no-cache-dir --upgrade -r /home/appuser/requirements.txt | |
| COPY geospatial-data-converter/ /home/appuser/geospatial-data-converter/ | |
| FROM base AS test | |
| COPY dev-requirements.txt /home/appuser/dev-requirements.txt | |
| RUN pip install --user --no-cache-dir --upgrade -r /home/appuser/dev-requirements.txt | |
| FROM base AS runtime | |
| WORKDIR /workspace | |
| EXPOSE 7860 | |
| CMD ["streamlit", "run", "/home/appuser/geospatial-data-converter/app.py", "--server.port", "7860", "--server.address", "0.0.0.0", "--server.enableXsrfProtection=false"] | |