From 59681e531c98a066e2a6d208ece88ceca6eca735 Mon Sep 17 00:00:00 2001 From: zgaetano Date: Tue, 31 Mar 2026 15:33:12 -0400 Subject: [PATCH] Remove mcp-gateway/homeassistant-mcp/Dockerfile --- mcp-gateway/homeassistant-mcp/Dockerfile | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 mcp-gateway/homeassistant-mcp/Dockerfile diff --git a/mcp-gateway/homeassistant-mcp/Dockerfile b/mcp-gateway/homeassistant-mcp/Dockerfile deleted file mode 100644 index b186287..0000000 --- a/mcp-gateway/homeassistant-mcp/Dockerfile +++ /dev/null @@ -1,18 +0,0 @@ -FROM python:3.12-slim-bookworm - -WORKDIR /app - -COPY requirements.txt . -RUN pip install --no-cache-dir -r requirements.txt - -COPY homeassistant_mcp.py . -COPY entrypoint.py . - -ENV PORT=8200 - -EXPOSE 8200 - -HEALTHCHECK --interval=30s --timeout=5s --start-period=15s \ - CMD python3 -c "import urllib.request; urllib.request.urlopen('http://localhost:8200/mcp', timeout=5)" - -CMD ["python3", "entrypoint.py"]