File size: 194 Bytes
4a77268
3171fa3
e2f8665
 
66d9efc
ab68865
e2f8665
fd9ae66
50733bc
 
 
459e9e0
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 ["fastapi", "run", "app:app", "--port", "80"]