Compare commits

..

1 Commits

Author SHA1 Message Date
leo a3061cc60a 🔧(build) update openssl and libssl3t64 versions to fix build
Update OpenSSL and libssl3t64 package versions to resolve a build failure
caused by version regression.
2026-03-18 10:30:02 +01:00
2 changed files with 8 additions and 6 deletions
-1
View File
@@ -30,7 +30,6 @@ and this project adheres to
- ⚡️(helm) reduce initialDelaySeconds and add periods seconds #1139
- 🔒️(backend) avoid information exposure through exception messages #1144
- ⬆️(dependencies) update PyJWT to v2.12.0 [SECURITY] #1151
- 📌(agents) unpin OpenSSL and related dependencies #1167
### Fixed
+8 -5
View File
@@ -1,11 +1,14 @@
FROM python:3.13-slim AS base
# Install system dependencies required by LiveKit
RUN apt-get update && apt-get install -y \
libglib2.0-0 \
libgobject-2.0-0 \
&& rm -rf /var/lib/apt/lists/*
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
libglib2.0-0 \
libgobject-2.0-0 \
&& apt-get upgrade -y openssl libssl3t64 \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
FROM base AS builder
WORKDIR /builder