We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec2085b commit 623d94fCopy full SHA for 623d94f
Dockerfile
@@ -5,8 +5,8 @@ ARG PORT=8009
5
ENV HOST=${HOST}
6
ENV PORT=${PORT}
7
ENV PATH="/usr/local/bin:${PATH}"
8
-# Update the base packages
9
-RUN pip install --upgrade vector-mcp
10
11
-# set the entrypoint to the start.sh script
12
-ENTRYPOINT exec vector-mcp --transport=http --host=${HOST} --port=${PORT}
+RUN pip install uv \
+ && uv pip install --system vector-mcp
+
+ENTRYPOINT exec vector-mcp --transport "http" --host "${HOST}" --port "${PORT}"
0 commit comments