KSvend Claude Happy commited on
Commit Β·
d441ef4
1
Parent(s): c766f2c
build: add openeo dependency for CDSE processing
Browse filesGenerated 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>
- Dockerfile +2 -1
- pyproject.toml +1 -0
Dockerfile
CHANGED
|
@@ -32,7 +32,8 @@ RUN pip install --no-cache-dir --prefer-binary \
|
|
| 32 |
"stackstac>=0.5.0" \
|
| 33 |
"reportlab>=4.1.0" \
|
| 34 |
"tqdm>=4.66.0" \
|
| 35 |
-
"planetary-computer>=1.0.0"
|
|
|
|
| 36 |
|
| 37 |
# ββ Stage 2: runtime (no compiler, smaller image) βββββββββββββββ
|
| 38 |
FROM python:3.11-slim
|
|
|
|
| 32 |
"stackstac>=0.5.0" \
|
| 33 |
"reportlab>=4.1.0" \
|
| 34 |
"tqdm>=4.66.0" \
|
| 35 |
+
"planetary-computer>=1.0.0" \
|
| 36 |
+
"openeo>=0.28.0"
|
| 37 |
|
| 38 |
# ββ Stage 2: runtime (no compiler, smaller image) βββββββββββββββ
|
| 39 |
FROM python:3.11-slim
|
pyproject.toml
CHANGED
|
@@ -23,6 +23,7 @@ dependencies = [
|
|
| 23 |
"scipy>=1.12.0",
|
| 24 |
"tqdm>=4.66.0",
|
| 25 |
"planetary-computer>=1.0.0",
|
|
|
|
| 26 |
]
|
| 27 |
|
| 28 |
[project.optional-dependencies]
|
|
|
|
| 23 |
"scipy>=1.12.0",
|
| 24 |
"tqdm>=4.66.0",
|
| 25 |
"planetary-computer>=1.0.0",
|
| 26 |
+
"openeo>=0.28.0",
|
| 27 |
]
|
| 28 |
|
| 29 |
[project.optional-dependencies]
|