drive2 feed

This commit is contained in:
Pan'kov Maksim
2025-09-13 00:18:39 +03:00
parent cca6e0547a
commit 029839154e
7 changed files with 465 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
FROM python:3.13
COPY ./reqs.txt /opt/feed-server/reqs.txt
RUN pip install --no-cache-dir --upgrade -r /opt/feed-server/reqs.txt
COPY ./app /opt/feed-server/app
WORKDIR /opt/feed-server/app
CMD ["fastapi", "run", "server.py", "--port", "80"]