1
0
Fork 0
docker-synapse/Dockerfile

32 lines
642 B
Docker
Raw Normal View History

2018-01-06 10:35:52 +00:00
FROM docker.jcg.re/base-alpine
MAINTAINER Jan Christian Grünhage <jan.christian@gruenhage.xyz>
2017-01-27 18:56:04 +00:00
2018-01-06 10:35:52 +00:00
RUN apk add --update \
python2 \
py-pip \
py-virtualenv \
py-setuptools \
python-dev \
postgresql-dev \
build-base \
linux-headers \
libffi-dev \
jpeg-dev \
tiff-dev \
bash \
sqlite \
su-exec \
openldap-dev \
&& pip install --upgrade \
setuptools \
cffi \
incremental \
python-ldap \
psycopg2 \
&& pip install https://github.com/matrix-org/synapse/tarball/master \
&& mkdir /data
2017-01-27 18:56:04 +00:00
2018-01-06 10:35:52 +00:00
ADD root /
VOLUME /data
EXPOSE 8448 8008