From dca3c9dbd239a16868339fc7f67f69657c3d8e61 Mon Sep 17 00:00:00 2001 From: zgaetano Date: Tue, 31 Mar 2026 15:33:43 -0400 Subject: [PATCH] Add linkedin-mcp/Dockerfile --- linkedin-mcp/Dockerfile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 linkedin-mcp/Dockerfile diff --git a/linkedin-mcp/Dockerfile b/linkedin-mcp/Dockerfile new file mode 100644 index 0000000..266b0d0 --- /dev/null +++ b/linkedin-mcp/Dockerfile @@ -0,0 +1,18 @@ +FROM python:3.12-slim + +WORKDIR /app + +RUN pip install --no-cache-dir httpx uvicorn starlette + +COPY server.py . + +RUN mkdir -p /data + +ENV PORT=8500 + +EXPOSE 8500 + +HEALTHCHECK --interval=30s --timeout=5s --start-period=10s \ + CMD python3 -c "import urllib.request; urllib.request.urlopen('http://localhost:8500/health', timeout=5)" + +CMD ["python3", "server.py"]