File size: 307 Bytes
a43a15c
 
 
 
 
a8e63cb
 
a43a15c
 
 
cd3dfdb
 
 
 
a43a15c
 
 
caea753
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

FROM python:3.12

LABEL authors="yumengliu"

ENV PATH="/home/user/.local/bin:$PATH"

RUN useradd -m -u 1000 user
USER user

COPY . .

# Set the working directory to /
WORKDIR /

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

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