23f3003322's picture
updat erequire for huuing face
56f7d4d
raw
history blame contribute delete
336 Bytes
FROM python:3.11-slim
RUN useradd -m -u 1000 user
WORKDIR /home/user/app
COPY --chown=user ./requirements.txt requirements.txt
RUN pip install -r requirements.txt
COPY --chown=user . .
USER user
ENV HOME=/home/user PATH=/home/user/.local/bin:$PATH
EXPOSE 7860
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]