summaryrefslogtreecommitdiff
path: root/api/Dockerfile
blob: 5119feb5df843a16b65c428a06a6daba63e92687 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
FROM python:3.14-slim
ENV PYTHONUNBUFFERED=1

WORKDIR /api

RUN useradd \
	--shell /sbin/nologin \
	--uid 10001 \
	--no-create-home \
	api-usr

COPY requirements.txt .

RUN python -m pip install -r requirements.txt

USER api-usr

COPY . .

CMD ["fastapi", "run", "main.py", "--port", "80"]