claude-self-reflect 2.4.12 → 2.4.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Dockerfile.importer +15 -7
- package/package.json +1 -1
package/Dockerfile.importer
CHANGED
|
@@ -5,12 +5,20 @@ WORKDIR /app
|
|
|
5
5
|
# Update system packages for security
|
|
6
6
|
RUN apt-get update && apt-get upgrade -y && rm -rf /var/lib/apt/lists/*
|
|
7
7
|
|
|
8
|
-
# Install dependencies
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
# Install dependencies directly (avoids file path issues with global npm installs)
|
|
9
|
+
RUN pip install --no-cache-dir \
|
|
10
|
+
qdrant-client==1.15.0 \
|
|
11
|
+
openai==1.97.1 \
|
|
12
|
+
mcp-server-qdrant==0.8.0 \
|
|
13
|
+
backoff==2.2.1 \
|
|
14
|
+
tqdm==4.67.1 \
|
|
15
|
+
humanize==4.12.3 \
|
|
16
|
+
fastembed==0.7.1 \
|
|
17
|
+
voyageai==0.3.4 \
|
|
18
|
+
tenacity==9.1.2
|
|
11
19
|
|
|
12
|
-
#
|
|
13
|
-
|
|
20
|
+
# Note: The import script is mounted as a volume in docker-compose.yaml
|
|
21
|
+
# This allows the container to work with both local development and global npm installs
|
|
14
22
|
|
|
15
|
-
#
|
|
16
|
-
CMD ["python", "
|
|
23
|
+
# Default command (can be overridden by docker-compose)
|
|
24
|
+
CMD ["python", "--version"]
|