advancemaskingapi / Dockerfile
zombee11's picture
Upload 3 files
9b3a7a4 verified
Raw
History Blame Contribute Delete
249 Bytes
FROM python:3.10
WORKDIR /app
COPY . /app
RUN apt-get update && apt-get install -y \
libgl1 \
libglib2.0-0
RUN pip install --no-cache-dir -r requirements.txt
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]