Initial commit

This commit is contained in:
2026-03-16 23:07:48 +03:00
commit da0892e7fe
7 changed files with 106 additions and 0 deletions

10
auth_backend/Dockerfile Executable file
View File

@@ -0,0 +1,10 @@
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY server.py .
EXPOSE 8080
CMD ["uvicorn", "server:app", "--host", "0.0.0.0", "--port", "8080"]