30 lines
987 B
Docker
30 lines
987 B
Docker
FROM cloudron/base:2.0.0@sha256:96cb00e968d7f78ff6c7f6a373ce184e0f94ad4a5298d849031201bf4a9e3bf6
|
|
|
|
RUN mkdir -p /app/pkg
|
|
|
|
WORKDIR /app/code
|
|
|
|
ARG VERSION=v1.26.0
|
|
|
|
# https://pythonspeed.com/articles/activate-virtualenv-dockerfile/
|
|
RUN virtualenv -p python3 /app/code/env
|
|
ENV VIRTUAL_ENV=/app/code/env
|
|
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
|
|
|
|
# Synapse (https://github.com/matrix-org/synapse/blob/master/INSTALL.md)
|
|
# lxml - required for previews
|
|
RUN pip install --upgrade pip && \
|
|
pip install --upgrade setuptools && \
|
|
pip install matrix-synapse==${VERSION} psycopg2-binary python-ldap matrix-synapse-ldap3 lxml publicsuffix2
|
|
|
|
RUN curl -sL https://github.com/mikefarah/yq/releases/download/3.2.1/yq_linux_amd64 -o /usr/bin/yq && \
|
|
chmod +x /usr/bin/yq
|
|
|
|
RUN ln -sf /app/data/index.html /app/code/env/lib/python3.6/site-packages/synapse/static/index.html
|
|
|
|
RUN chown -R cloudron.cloudron /app/code
|
|
|
|
ADD index.html homeserver.yaml.template start.sh /app/pkg/
|
|
|
|
CMD [ "/app/pkg/start.sh" ]
|