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

  1. FROM matrixdotorg/synapse:v1.123.0
  2. ## patch synapse well-known server
  3. COPY fix-well-known.patch /tmp/
  4. RUN apt-get update && apt-get install -y patch && \
  5. patch -p2 -d /usr/local/lib/python3.12/site-packages/synapse < /tmp/fix-well-known.patch && \
  6. apt-get remove -y patch && apt-get autoremove -y && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/*