Compare commits

...

14 Commits

Author SHA1 Message Date
483e9d577c
push to 1.127.1
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 2m32s
2025-03-27 07:45:29 +01:00
812ea36541 push to 1.125.0
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 2m31s
2025-03-04 19:41:30 +01:00
d5f53386fb push to 1.124.0
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 2m50s
2025-02-17 10:23:42 +01:00
b75bd77fac
push to 1.121.1
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 2m36s
2024-12-12 10:26:31 +01:00
963a7039ea
push to 1.120.0
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 2m43s
2024-11-27 12:17:31 +01:00
7df2bdd0b3
push to 1.119.0
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 2m43s
2024-11-25 17:21:45 +01:00
202be63c7a
push to 1.118.0
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 3h14m5s
2024-11-01 08:12:46 +01:00
d030d9cfda
push to 1.116.0
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 3h13m42s
2024-10-02 08:18:13 +02:00
471ec62d02
push to 1.112.0
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 18m3s
2024-08-04 13:13:22 +02:00
512b07c72d
push to 1.111.0
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Has been cancelled
2024-07-18 09:12:18 +02:00
843cb13e55
push to 1.109.0
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 3h14m50s
2024-06-27 11:39:53 +02:00
44e4103c22
push to 1.108.0
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 3h14m54s
2024-05-31 10:19:36 +02:00
92139571e8
push to 1.105.1
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 3h9m12s
2024-04-23 19:10:58 +02:00
6e929b2d16
push to 1.105.0
All checks were successful
Build Multiarch Container Image / call-reusable-workflow (push) Successful in 11m47s
2024-04-22 13:48:59 +02:00
2 changed files with 7 additions and 4 deletions

View File

@ -1,4 +1,4 @@
FROM docker.io/alpine:3.19 AS builder FROM docker.io/alpine:3.21 AS builder
RUN apk add --no-cache \ RUN apk add --no-cache \
alpine-sdk \ alpine-sdk \
@ -10,19 +10,21 @@ RUN apk add --no-cache \
zlib-dev \ zlib-dev \
jpeg-dev \ jpeg-dev \
rust \ rust \
cargo \
poetry \ poetry \
git git
ENV VERSION=v1.104.0 ENV VERSION=v1.127.1
RUN git clone https://github.com/element-hq/synapse.git RUN git clone https://github.com/element-hq/synapse.git
WORKDIR /synapse WORKDIR /synapse
RUN git checkout $VERSION RUN git checkout $VERSION
RUN poetry export -o /synapse/requirements.txt RUN poetry export -o /synapse/requirements.txt
RUN pip3 install --target="/install" -r /synapse/requirements.txt RUN pip3 install --target="/install" -r /synapse/requirements.txt
RUN pip3 install --target="/install" --no-deps --no-warn-script-location /synapse[all];
FROM docker.io/thallian/confd-env:3.19-3.1.6.2 FROM docker.io/thallian/confd-env:3.21-3.2.0.2
RUN addgroup -g 2222 matrix-synapse RUN addgroup -g 2222 matrix-synapse
RUN adduser -h /var/lib/matrix-synapse -u 2222 -D -G matrix-synapse matrix-synapse RUN adduser -h /var/lib/matrix-synapse -u 2222 -D -G matrix-synapse matrix-synapse
@ -31,6 +33,7 @@ RUN apk add --no-cache \
python3 \ python3 \
py3-psycopg2 \ py3-psycopg2 \
py3-authlib \ py3-authlib \
py3-asn1 \
libffi \ libffi \
openssl \ openssl \
zlib \ zlib \

View File

@ -1141,7 +1141,7 @@ oembed:
# Defaults to "https://www.recaptcha.net/recaptcha/api/siteverify". # Defaults to "https://www.recaptcha.net/recaptcha/api/siteverify".
# #
#recaptcha_siteverify_api: "https://my.recaptcha.site" #recaptcha_siteverify_api: "https://my.recaptcha.site"
enable_authenticated_media: true
## TURN ## ## TURN ##