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 99a835f commit c5d1afcCopy full SHA for c5d1afc
dockerfiles/Dockerfile.stac
@@ -5,7 +5,7 @@ FROM ghcr.io/vincentsarago/uvicorn-gunicorn:${PYTHON_VERSION}
5
ENV CURL_CA_BUNDLE /etc/ssl/certs/ca-certificates.crt
6
7
COPY runtime/eoapi/stac /app/stac
8
-RUN pip install -e /app/stac
+RUN pip install -e "/app/stac[jwt]"
9
10
ENV MODULE_NAME eoapi.stac.app
11
ENV VARIABLE_NAME app
runtime/eoapi/stac/pyproject.toml
@@ -40,6 +40,10 @@ test = [
40
"pytest-asyncio",
41
"httpx",
42
]
43
+jwt = [
44
+ "pyjwt",
45
+ "cryptography"
46
+]
47
48
[build-system]
49
requires = ["pdm-pep517"]
0 commit comments