We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38ef0b5 commit 805aae4Copy full SHA for 805aae4
Dockerfile
@@ -3,7 +3,7 @@ FROM python:3.11-slim AS builder
3
4
# 1. Install curl & build tools for uv & any C extensions
5
RUN apt-get update \
6
- && apt-get install -y --no-install-recommends curl build-essential \
+ && apt-get install -y --no-install-recommends curl build-essential git \
7
&& rm -rf /var/lib/apt/lists/*
8
9
# 2. Install uv standalone and symlink it
@@ -12,6 +12,9 @@ RUN curl -LsSf https://astral.sh/uv/install.sh | sh \
12
13
WORKDIR /src
14
15
+# We need git for uv-dynamic-versioning
16
+COPY .git/ .git/
17
+
18
# 3. Copy in only what uv needs to build the locked venv
19
COPY pyproject.toml uv.lock README.md entrypoint.sh ./
20
COPY src/deepset_mcp/ src/deepset_mcp/
0 commit comments