general_chat / Dockerfile
pvanand's picture
Update Dockerfile
68d0499 verified
raw
history blame
248 Bytes
FROM tiangolo/uvicorn-gunicorn:python3.11
LABEL maintainer="Sebastian Ramirez <[email protected]>"
RUN pip install setuptools<20.2
COPY requirements.txt /tmp/requirements.txt
RUN pip install --no-cache-dir -r /tmp/requirements.txt
COPY . /app