api / Dockerfile
Wajahat698's picture
Update Dockerfile
0b72fa1 verified
raw
history blame contribute delete
183 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY . /app
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
EXPOSE 7860
CMD ["gunicorn", "--bind", "0.0.0.0:7860", "app:app"]