From 523e143f740f416f1fabcf09d12127675c00c73d Mon Sep 17 00:00:00 2001 From: zgaetano Date: Tue, 31 Mar 2026 15:33:44 -0400 Subject: [PATCH] Add truenas-mcp/Dockerfile --- truenas-mcp/Dockerfile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 truenas-mcp/Dockerfile diff --git a/truenas-mcp/Dockerfile b/truenas-mcp/Dockerfile new file mode 100644 index 0000000..13ce06e --- /dev/null +++ b/truenas-mcp/Dockerfile @@ -0,0 +1,18 @@ +FROM python:3.12-slim-bookworm + +WORKDIR /app + +COPY requirements.txt . +RUN pip install --no-cache-dir -r requirements.txt + +COPY truenas_mcp.py . +COPY entrypoint.py . + +ENV PORT=8100 + +EXPOSE 8100 + +HEALTHCHECK --interval=30s --timeout=5s --start-period=15s \ + CMD python3 -c "import urllib.request; urllib.request.urlopen('http://localhost:8100/mcp', timeout=5)" + +CMD ["python3", "entrypoint.py"]