File size: 210 Bytes
4a77268
3171fa3
e2f8665
 
66d9efc
ab68865
a5ec0f3
fd9ae66
50733bc
 
 
a5ec0f3
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM python:3.10.13

COPY . .

WORKDIR /

RUN pip install --no-cache-dir --upgrade -r /requirements.txt

RUN useradd -m -u 1000 user
USER user

CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]