File size: 441 Bytes
dee52be
497b153
a1be15a
 
a9f535b
497b153
dee52be
497b153
92df6d7
 
 
 
 
 
 
 
 
 
a1be15a
92df6d7
 
 
a1be15a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
FROM python:3.9

WORkDIR /code

COPY ./requirements.txt /code/requirements.txt

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

# setup new user
RUN useradd -m -u 1000 user

# switch to the new user
USER user

# set home to the new user's home
ENV HOME=/home/user \
    PATH=/home/user/.local/bin:$PATH

WORKDIR $HOME/app

COPY --chown=user . $HOME/app

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