From 92139571e8ead9c1608ef157f0c0455f201f2eb2 Mon Sep 17 00:00:00 2001 From: Sebastian Hugentobler Date: Tue, 23 Apr 2024 19:10:58 +0200 Subject: [PATCH] push to 1.105.1 --- Containerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index 2118758..fd7bac7 100644 --- a/Containerfile +++ b/Containerfile @@ -10,16 +10,18 @@ RUN apk add --no-cache \ zlib-dev \ jpeg-dev \ rust \ + cargo \ poetry \ git -ENV VERSION=v1.105.0 +ENV VERSION=v1.105.1 RUN git clone https://github.com/element-hq/synapse.git WORKDIR /synapse RUN git checkout $VERSION RUN poetry export -o /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