Pouring / Dockerfile
madhurithika22's picture
Update Dockerfile
522ba9e verified
Raw
History Blame Contribute Delete
266 Bytes
FROM python:3.10
WORKDIR /app
COPY ./requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
RUN apt-get update && apt-get install -y libgl1 libglib2.0-0
COPY . /app
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]