Jainam Jain
DockerFile
018827e
raw
history blame
383 Bytes
FROM python:3.10.11
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN apt-get update && \
apt-get install -y python3 python3-pip libgl1-mesa-glx && \
rm -rf /var/lib/apt/lists/*
RUN pip install --upgrade pip
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
CMD ["uvicorn", "app.app:app", "--host", "0.0.0.0", "--port", "7860"]