10 lines
173 B
Docker
10 lines
173 B
Docker
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY mcp/requirements.txt .
|
|
RUN pip install --no-cache-dir --timeout=100 -r requirements.txt
|
|
|
|
COPY mcp/ .
|
|
|
|
CMD ["python", "homelab.py"]
|