Initial: Homelab Butler API proxy

This commit is contained in:
sascha 2026-04-18 10:03:05 +02:00
commit b1aa6671e2
6 changed files with 259 additions and 0 deletions

7
Dockerfile Normal file
View file

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