Compare commits

..

3 Commits

Author SHA1 Message Date
28675d7f44 Synapse 1.36.0 2021-06-16 06:11:52 +00:00
44797c4354 Update version 2021-06-09 08:48:48 +00:00
9798329c6c Update matrix-webhook/Dockerfile, synapse/Makefile files 2021-05-25 07:57:53 +00:00
3 changed files with 14 additions and 10 deletions

View File

@ -1,21 +1,25 @@
FROM node:16.1.0
FROM node:10-alpine
COPY . /app
WORKDIR /app
COPY . /
WORKDIR /
ENV NODE_ENV=development
RUN npm install -g npm-check-updates
RUN ncu -u matrix-appservice-bridge
RUN npm install \
&& chmod +x docker-start.sh
RUN apk add --no-cache -t build-deps make gcc g++ python libc-dev wget git dos2unix \
&& apk add --no-cache ca-certificates \
&& dos2unix docker-start.sh \
&& chmod +x docker-start.sh \
&& npm install \
&& apk del build-deps
ENV NODE_ENV=production
ENV WEBHOOKS_USER_STORE_PATH=/data/user-store.db
ENV WEBHOOKS_ROOM_STORE_PATH=/data/room-store.db
ENV WEBHOOKS_DB_CONFIG_PATH=/data/database.json
ENV WEBHOOKS_ENV=docker
CMD /app/docker-start.sh
CMD /docker-start.sh
EXPOSE 9000
VOLUME ["/data"]

View File

@ -1,5 +1,5 @@
NAMESPACE=alemairebe
VERSION=1.33.2
VERSION=1.36.0
IMAGE=synapse
push: get decompress build

View File

@ -1,2 +1,2 @@
VERSION=6.2.25
UNIFI_VERSION=6.2.25-de0c6132b7
VERSION=6.2.26
UNIFI_VERSION=6.2.26-a79cb15f05