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 2ef6764 commit 3e12284Copy full SHA for 3e12284
1 file changed
Dockerfile.lambda
@@ -7,7 +7,9 @@ WORKDIR /var/task
7
COPY pyproject.toml uv.lock ./
8
COPY src/ ./src/
9
10
-RUN pip install --no-cache-dir .
+# Ensure pip is new enough to pick up prebuilt wheels (avoids building Rust/C++ deps like tiktoken/pyarrow).
11
+RUN python -m pip install --no-cache-dir --upgrade pip setuptools wheel
12
+RUN python -m pip install --no-cache-dir .
13
14
# Lambda handler (module.function)
15
CMD ["poll_agent.lambda_handler.handler"]
0 commit comments