From 8e186d5cdc5437de599513559166df1baf083da9 Mon Sep 17 00:00:00 2001 From: saces Date: Wed, 11 Feb 2026 10:55:33 +0100 Subject: [PATCH] fix container build --- Containerfile.debian | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Containerfile.debian b/Containerfile.debian index 78a3c88..5685930 100644 --- a/Containerfile.debian +++ b/Containerfile.debian @@ -22,6 +22,10 @@ EOF FROM docker.io/library/python:${PYTHON_VERSION}-${DEBIAN_VERSION} AS pybuilder ENV PYTHONUNBUFFERED=1 ENV PIP_ROOT_USER_ACTION=ignore + +RUN apt update +RUN apt -y install libolm-dev + COPY --from=gobuilder /pygomx-build/libmxclient.so /usr/local/lib/libmxclient.so COPY --from=gobuilder /pygomx-build/libmxclient.h /usr/local/include/libmxclient.h