general_chat / dockerfile
pvanand's picture
Create dockerfile
e3b10d6 verified
raw
history blame
218 Bytes
FROM tiangolo/uvicorn-gunicorn:python3.11
LABEL maintainer="Sebastian Ramirez <tiangolo@gmail.com>"
COPY requirements.txt /tmp/requirements.txt
RUN pip install --no-cache-dir -r /tmp/requirements.txt
COPY ./app /app