Skip to content

Commit c5d1afc

Browse files
committed
Install JWT reqs
1 parent 99a835f commit c5d1afc

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

dockerfiles/Dockerfile.stac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ FROM ghcr.io/vincentsarago/uvicorn-gunicorn:${PYTHON_VERSION}
55
ENV CURL_CA_BUNDLE /etc/ssl/certs/ca-certificates.crt
66

77
COPY runtime/eoapi/stac /app/stac
8-
RUN pip install -e /app/stac
8+
RUN pip install -e "/app/stac[jwt]"
99

1010
ENV MODULE_NAME eoapi.stac.app
1111
ENV VARIABLE_NAME app

runtime/eoapi/stac/pyproject.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,10 @@ test = [
4040
"pytest-asyncio",
4141
"httpx",
4242
]
43+
jwt = [
44+
"pyjwt",
45+
"cryptography"
46+
]
4347

4448
[build-system]
4549
requires = ["pdm-pep517"]

0 commit comments

Comments
 (0)