Ahang / Dockerfile
Opera8's picture
Update Dockerfile
ad27e9e verified
raw
history blame contribute delete
435 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
# تغییر مهم: دادن دسترسی کامل پوشه app به کاربر user
RUN useradd -m -u 1000 user && \
chown -R user:user /app
USER user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
EXPOSE 7860
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860", "--workers", "10"]