hand / Dockerfile
Manar312's picture
Upload 6 files
49152f3 verified
Raw
History Blame Contribute Delete
332 Bytes
FROM python:3.10
WORKDIR /app
RUN apt-get update && apt-get install -y \
ffmpeg \
libsm6 \
libxext6 \
libgl1 \
libglib2.0-0 \
libxcb1
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]