Spaces:
Paused
Paused
File size: 330 Bytes
5601c60 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
FROM python:3.10-slim-buster
RUN useradd -m -u 1000 appuser
USER appuser
ENV PATH="/home/appuser/.local/bin:$PATH"
WORKDIR /app
COPY --chown=appuser ./requirements.txt requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
COPY --chown=appuser . .
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] |