🔧(livekit) create custom LiveKit image with nip.io CA certificate

Override LiveKit Docker image to include nip.io Certificate Authority for
development environment. Addresses issue where LiveKit webhook calls fail in
dev mode due to unknown CA. Custom image places certificate in appropriate
location since LiveKit chart lacks volume mounting options for CA certs or
webhook SSL disabling capabilities.

Discussed with @rouja.
This commit is contained in:
lebaudantoine
2025-03-06 11:23:02 +01:00
committed by aleb_the_flash
parent 50719e8c25
commit 13944ceebd
5 changed files with 36 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
FROM livekit/livekit-server:latest
# We inject the nip.io certificate manually because the livekit chart doesn't support volume mounting
COPY rootCA.pem /etc/ssl/certs/
ENTRYPOINT ["/livekit-server"]