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 7189c6d commit a03de92Copy full SHA for a03de92
deployment/aws/lambda/Dockerfile
@@ -4,8 +4,8 @@ FROM --platform=linux/amd64 public.ecr.aws/lambda/python:${PYTHON_VERSION}
4
5
WORKDIR /tmp
6
7
-RUN pip install pip -U
8
-RUN pip install "titiler.application==0.18.5" "mangum>=0.10.0" -t /asset --no-binary pydantic
+RUN python -m pip install pip -U
+RUN python -m pip install "titiler.application==0.18.5" "mangum>=0.10.0" "numexpr==2.10.0" -t /asset --no-binary pydantic
9
10
# Reduce package size and remove useless files
11
RUN cd /asset && find . -type f -name '*.pyc' | while read f; do n=$(echo $f | sed 's/__pycache__\///' | sed 's/.cpython-[0-9]*//'); cp $f $n; done;
0 commit comments