Connor Sutton
added conversion tests
59879a5
raw
history blame
705 Bytes
FROM python:3.11-slim-bookworm
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/
COPY tests/ /home/appuser/tests/
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"]