sonuprasad23's picture
Uploaded the necessary files
c297888
raw
history blame contribute delete
260 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir -r requirements.txt
COPY . .
ENV PORT=7860
CMD ["gunicorn", "--bind", "0.0.0.0:7860", "--workers", "4", "app:app"]