Dockerfile: use requirements.txt

This commit is contained in:
2026-02-06 22:01:38 +04:00
parent a2c4560e36
commit 55b8e51279

View File

@@ -1,6 +1,7 @@
FROM python:3-alpine FROM python:3-alpine
RUN pip install fastapi[standard] COPY ./requirements.txt /app/requirements.txt
RUN pip install -r /app/requirements.txt
COPY ./src /app COPY ./src /app