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 b01e2b0 commit b461ec0Copy full SHA for b461ec0
lib/titiler-pgstac-api/runtime/Dockerfile
@@ -10,6 +10,10 @@ RUN dnf install -y gcc-c++ findutils
10
COPY titiler-pgstac-api/runtime/requirements.txt requirements.txt
11
RUN python -m pip install -r requirements.txt "mangum>=0.14,<0.15" -t /asset
12
13
+# copy libexpat.so.1 into a location included in LD_LIBRARY_PATH in the Lambda runtime environment
14
+# (/usr/lib64 is not available in the Lambda runtime, just the build environment)
15
+RUN cp /usr/lib64/libexpat.so.1 /asset/
16
+
17
# Remove system dependencies
18
RUN dnf remove -y gcc-c++
19
0 commit comments