File size: 248 Bytes
e3b10d6
 
 
 
68d0499
6e1ff49
e3b10d6
6e1ff49
e3b10d6
 
1df0f9e
1
2
3
4
5
6
7
8
9
10
11
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