🐛 Fix missing lib

This commit is contained in:
itskovacs 2025-07-23 19:12:40 +02:00
parent 883a649210
commit b803c28b61
2 changed files with 3 additions and 2 deletions

View File

@ -4,4 +4,5 @@ pydantic~=2.11
PyJWT~=2.10 PyJWT~=2.10
argon2-cffi~=25.1 argon2-cffi~=25.1
pydantic_settings~=2.9 pydantic_settings~=2.9
Pillow~=11.2 Pillow~=11.2
authlib~=1.6

View File

@ -64,7 +64,7 @@ One way to check if you're concerned by this is simply doing the following and c
$ docker run --rm -it ghcr.io/itskovacs/trip:1 /bin/bash $ docker run --rm -it ghcr.io/itskovacs/trip:1 /bin/bash
$ python3 $ python3
>>> import httpx >>> import httpx
>>> resp = httpx.get("https://your-keycloak-host/") >>> httpx.get("https://your-keycloak-host/")
``` ```
In case you're facing this issue, it's likely due to the fact that the container does not trust you custom certificate. In case you're facing this issue, it's likely due to the fact that the container does not trust you custom certificate.