Maximofn's picture
Create Dockerfile
38212e9 verified
raw
history blame contribute delete
289 Bytes
FROM python:3.13-slim
RUN useradd -m -u 1000 user
WORKDIR /app
COPY --chown=user ./requierements.txt requierements.txt
RUN pip install --no-cache-dir --upgrade -r requierements.txt
COPY --chown=user . /app
EXPOSE 7860
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]