feat: Add GitHub Actions CI and professional README

This commit is contained in:
averageencoreenjoer
2025-09-02 01:35:30 +03:00
commit b951296d9d
26 changed files with 604 additions and 0 deletions

14
web/Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM python:3.9-slim-buster
WORKDIR /app
# Копируем файл зависимостей из папки web
COPY web/requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Копируем исходный код из папки web/src
COPY web/src/. /app/
ENV PYTHONUNBUFFERED 1
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]