audio_chat / Dockerfile
pvanand's picture
Rename dockerfile to Dockerfile
6e1ff49 verified
raw
history blame
No virus
261 Bytes
FROM tiangolo/uvicorn-gunicorn:python3.11
LABEL maintainer="Sebastian Ramirez <tiangolo@gmail.com>"
RUN pip install --upgrade pip setuptools
COPY requirements.txt /tmp/requirements.txt
RUN pip install --no-cache-dir -r /tmp/requirements.txt
COPY ./app /app