More workarounds to use latest python-olm

This commit is contained in:
Abel Luck 2023-11-28 12:16:13 +01:00
parent 2f2cf77ad6
commit 26ff0d256b
6 changed files with 69 additions and 899 deletions

View file

@ -1,6 +1,6 @@
ARG PYTHON_VERSION=3.11
FROM docker.io/python:${PYTHON_VERSION}-alpine as builder
ARG LIBOLM_VERSION=3.2.15
ARG LIBOLM_VERSION=3.2.16
RUN apk add --no-cache \
make \
cmake \
@ -13,6 +13,7 @@ RUN apk add --no-cache \
RUN set -ex; \
git clone -b "${LIBOLM_VERSION}" https://gitlab.matrix.org/matrix-org/olm.git olm && cd olm; \
pip install setuptools==68.2.2; \
cmake . -Bbuild ; \
cmake --build build ; \
make install ; \