Add files via upload

This commit is contained in:
Outis
2026-03-23 08:52:01 -04:00
committed by GitHub
commit 81f6afd697
10 changed files with 6973 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
\
FROM python:3.11-slim
WORKDIR /app
RUN pip install --no-cache-dir fastapi uvicorn paramiko pyotp
COPY switch_backend.py .
COPY frontend/dist ./frontend/dist
EXPOSE 8765
CMD ["uvicorn", "switch_backend:app", "--host", "0.0.0.0", "--port", "8765"]