Update Dockerfile

This commit is contained in:
2025-05-07 18:53:44 +00:00
parent b7bedceb92
commit 57dd1c23c8

View File

@@ -13,8 +13,11 @@ RUN apt-get update && \
&& rm -rf /var/lib/apt/lists/* \
&& pip install --no-cache-dir uv
# Copy ALL project files (including the mcp module)
COPY . .
# Copy project files
COPY pyproject.toml poetry.lock ./
COPY splunk_mcp.py ./
COPY README.md ./
COPY .env.example ./
# Install dependencies using uv
RUN uv pip install --system poetry && \