KSvend Claude Happy commited on
Commit
a2ab224
·
1 Parent(s): bc4a082

fix: add libexpat1 to runtime Docker image — fixes STAC indicator data

Browse files

pystac-client depends on libexpat.so.1 which was installed in the
builder stage but not in the runtime stage. All STAC-based indicators
(cropland, vegetation, water) were silently falling back to placeholder
data because of this missing library.

Generated with [Claude Code](https://claude.ai/code)
via [Happy](https://happy.engineering)

Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Happy <yesreply@happy.engineering>

Files changed (1) hide show
  1. Dockerfile +1 -0
Dockerfile CHANGED
@@ -34,6 +34,7 @@ FROM python:3.11-slim
34
  RUN apt-get update && apt-get install -y --no-install-recommends \
35
  libgeos-c1v5 \
36
  libproj25 \
 
37
  proj-data \
38
  proj-bin \
39
  && rm -rf /var/lib/apt/lists/*
 
34
  RUN apt-get update && apt-get install -y --no-install-recommends \
35
  libgeos-c1v5 \
36
  libproj25 \
37
+ libexpat1 \
38
  proj-data \
39
  proj-bin \
40
  && rm -rf /var/lib/apt/lists/*