Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b95e6a3b5c | ||
|
|
c711c8f249 |
@@ -110,3 +110,7 @@
|
|||||||
[0.7.1]
|
[0.7.1]
|
||||||
* Users will now automatically join the #discuss channel (only in new installations)
|
* Users will now automatically join the #discuss channel (only in new installations)
|
||||||
|
|
||||||
|
[1.0.0]
|
||||||
|
* Use latest base image
|
||||||
|
* Update to synapse v1.12.4
|
||||||
|
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"description": "file://DESCRIPTION.md",
|
"description": "file://DESCRIPTION.md",
|
||||||
"changelog": "file://CHANGELOG",
|
"changelog": "file://CHANGELOG",
|
||||||
"tagline": "Secure & decentralized communication",
|
"tagline": "Secure & decentralized communication",
|
||||||
"version": "0.7.1",
|
"version": "1.0.0",
|
||||||
"healthCheckPath": "/",
|
"healthCheckPath": "/",
|
||||||
"httpPort": 8008,
|
"httpPort": 8008,
|
||||||
"memoryLimit": 536870912,
|
"memoryLimit": 536870912,
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
This app packages Synapse <upstream>1.12.3</upstream>.
|
This app packages Synapse <upstream>1.12.4</upstream>.
|
||||||
|
|
||||||
**This package only provides the Matrix backend. A variety of clients are available
|
**This package only provides the Matrix backend. A variety of clients are available
|
||||||
[here](https://matrix.org/clients/). Riot is a popular web frontend for Matrix and
|
[here](https://matrix.org/clients/). Riot is a popular web frontend for Matrix and
|
||||||
|
|||||||
10
Dockerfile
10
Dockerfile
@@ -1,16 +1,10 @@
|
|||||||
FROM cloudron/base:1.0.0@sha256:147a648a068a2e746644746bbfb42eb7a50d682437cead3c67c933c546357617
|
FROM cloudron/base:2.0.0@sha256:f9fea80513aa7c92fe2e7bf3978b54c8ac5222f47a9a32a7f8833edf0eb5a4f4
|
||||||
|
|
||||||
RUN mkdir -p /app/pkg
|
RUN mkdir -p /app/pkg
|
||||||
|
|
||||||
WORKDIR /app/code
|
WORKDIR /app/code
|
||||||
|
|
||||||
ARG VERSION=v1.12.3
|
ARG VERSION=v1.12.4
|
||||||
|
|
||||||
RUN apt update && \
|
|
||||||
apt install -y build-essential python3-dev libffi-dev \
|
|
||||||
python3-pip python-setuptools sqlite3 libxml2-dev \
|
|
||||||
libssl-dev python-virtualenv libjpeg-dev libxslt1-dev libldap2-dev libsasl2-dev && \
|
|
||||||
rm -rf /var/cache/apt /var/lib/apt/lists
|
|
||||||
|
|
||||||
# https://pythonspeed.com/articles/activate-virtualenv-dockerfile/
|
# https://pythonspeed.com/articles/activate-virtualenv-dockerfile/
|
||||||
RUN virtualenv -p python3 /app/code/env
|
RUN virtualenv -p python3 /app/code/env
|
||||||
|
|||||||
Reference in New Issue
Block a user