RAI-BETA / Dockerfile
Kawaquader's picture
Upload folder using huggingface_hub
0130318 verified
raw
history blame contribute delete
294 Bytes
FROM python:3.10
RUN useradd -m -u 1000 user
USER user
ENV PATH="/home/user/.local/bin:$PATH"
WORKDIR /app
COPY --chown=user requirements.txt /app/
RUN pip install --no-cache-dir -r requirements.txt
COPY --chown=user . /app/
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]