You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
363 B
9 lines
363 B
FROM matrixdotorg/synapse:v1.123.0
|
|
|
|
## patch synapse well-known server
|
|
|
|
COPY fix-well-known.patch /tmp/
|
|
|
|
RUN apt-get update && apt-get install -y patch && \
|
|
patch -p2 -d /usr/local/lib/python3.12/site-packages/synapse < /tmp/fix-well-known.patch && \
|
|
apt-get remove -y patch && apt-get autoremove -y && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/*
|