push to f6cb26f7
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 1h2m40s

This commit is contained in:
Sebastian Hugentobler 2024-05-27 13:21:42 +02:00
parent 465e258968
commit c1e59b8b63
Signed by: shu
GPG Key ID: BB32CF3CA052C2F0

View File

@ -1,4 +1,4 @@
FROM docker.io/alpine:3.19 as builder FROM docker.io/alpine:3.20 as builder
RUN apk --no-cache add \ RUN apk --no-cache add \
sed \ sed \
@ -31,17 +31,17 @@ RUN apk --no-cache add \
py3-yarl \ py3-yarl \
py3-mako py3-mako
ENV VERSION=43d17a335b1dd45fc81f3bed8ad6a7ee9f7a708f ENV VERSION=f6cb26f7f53089488e085b45add5303fa283dc3e
RUN git clone https://github.com/mautrix/telegram.git RUN git clone https://github.com/mautrix/telegram.git
WORKDIR /telegram WORKDIR /telegram
RUN git checkout "$VERSION" RUN git checkout "$VERSION"
RUN pip3 install --prefix=/install --upgrade -r requirements.txt RUN pip3 install --prefix=/install --upgrade -r requirements.txt
RUN pip3 install --prefix=/install --upgrade -r optional-requirements.txt RUN pip3 install --prefix=/install --upgrade -r optional-requirements.txt
RUN cp -r mautrix_telegram /install/lib/python3.11/site-packages/ RUN cp -r mautrix_telegram /install/lib/python3.12/site-packages/
FROM docker.io/thallian/confd-env:3.19-3.1.6.2 FROM docker.io/thallian/confd-env:3.20-3.1.6.2
ENV FFMPEG_BINARY=/usr/bin/ffmpeg ENV FFMPEG_BINARY=/usr/bin/ffmpeg
@ -79,7 +79,7 @@ RUN apk --no-cache add \
py3-mako \ py3-mako \
py3-setuptools py3-setuptools
ENV PYTHONPATH=/usr/lib/python3.11/site-packages:/py-pkgs/lib/python3.11/site-packages/ ENV PYTHONPATH=/usr/lib/python3.12/site-packages:/py-pkgs/lib/python3.12/site-packages/
WORKDIR /var/lib/matrix-bridge WORKDIR /var/lib/matrix-bridge