Initial: Homelab Butler API proxy
This commit is contained in:
commit
b1aa6671e2
6 changed files with 259 additions and 0 deletions
7
Dockerfile
Normal file
7
Dockerfile
Normal 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"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue