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