testing_api_chat / Dockerfile
arhamTariq's picture
Upload 3 files
8a5e144 verified
raw
history blame contribute delete
163 Bytes
FROM python:3.10
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
CMD ["gunicorn", "-b", "0.0.0.0:7860", "app:app"]