File size: 494 Bytes
4eff2f9
 
 
 
 
 
 
875388e
 
 
 
 
4eff2f9
 
 
875388e
 
 
 
4eff2f9
875388e
4eff2f9
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
FROM python:latest

ENV PYTHONUNBUFFERED 1

EXPOSE 8000
WORKDIR /app

RUN apt update && \
    apt install --no-install-recommends -y curl && \
    apt clean && rm -rf /var/lib/apt/lists/*
    
COPY requirements.txt main.py ./
RUN pip install --upgrade pip && \
    pip install -r requirements.txt

RUN useradd -m -u 1000 user
USER user
ENV HOME=/home/user \
	PATH=/home/user/.local/bin:$PATH

COPY --chown=user . .

RUN ls -al

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