2019-02-05 08:42:21 -05:00
|
|
|
# Dockerfile to build the matrixdotorg/synapse docker images.
|
|
|
|
#
|
|
|
|
# To build the image, run `docker build` command from the root of the
|
|
|
|
# synapse repository:
|
|
|
|
#
|
|
|
|
# docker build -f docker/Dockerfile .
|
|
|
|
#
|
|
|
|
# There is an optional PYTHON_VERSION build argument which sets the
|
|
|
|
# version of python to build against: for example:
|
|
|
|
#
|
|
|
|
# docker build -f docker/Dockerfile --build-arg PYTHON_VERSION=3.6 .
|
|
|
|
#
|
|
|
|
|
2019-06-25 00:20:53 -04:00
|
|
|
ARG PYTHON_VERSION=3.7
|
2018-02-03 14:18:36 -05:00
|
|
|
|
2018-10-01 07:29:17 -04:00
|
|
|
###
|
|
|
|
### Stage 0: builder
|
|
|
|
###
|
2019-07-12 06:38:25 -04:00
|
|
|
FROM docker.io/python:${PYTHON_VERSION}-alpine3.10 as builder
|
2018-09-10 10:02:42 -04:00
|
|
|
|
2018-10-01 07:29:17 -04:00
|
|
|
# install the OS build deps
|
|
|
|
|
|
|
|
RUN apk add \
|
2018-07-17 03:07:03 -04:00
|
|
|
build-base \
|
|
|
|
libffi-dev \
|
|
|
|
libjpeg-turbo-dev \
|
|
|
|
libressl-dev \
|
|
|
|
libxslt-dev \
|
|
|
|
linux-headers \
|
|
|
|
postgresql-dev \
|
2018-10-01 07:29:17 -04:00
|
|
|
zlib-dev
|
|
|
|
|
|
|
|
# build things which have slow build steps, before we copy synapse, so that
|
|
|
|
# the layer can be cached.
|
|
|
|
#
|
|
|
|
# (we really just care about caching a wheel here, as the "pip install" below
|
|
|
|
# will install them again.)
|
|
|
|
|
|
|
|
RUN pip install --prefix="/install" --no-warn-script-location \
|
|
|
|
cryptography \
|
|
|
|
msgpack-python \
|
|
|
|
pillow \
|
|
|
|
pynacl
|
|
|
|
|
|
|
|
# now install synapse and all of the python deps to /install.
|
|
|
|
|
2019-02-05 06:44:40 -05:00
|
|
|
COPY synapse /synapse/synapse/
|
|
|
|
COPY scripts /synapse/scripts/
|
|
|
|
COPY MANIFEST.in README.rst setup.py synctl /synapse/
|
|
|
|
|
2018-10-01 07:29:17 -04:00
|
|
|
RUN pip install --prefix="/install" --no-warn-script-location \
|
2019-01-09 11:37:51 -05:00
|
|
|
/synapse[all]
|
2018-10-01 07:29:17 -04:00
|
|
|
|
|
|
|
###
|
|
|
|
### Stage 1: runtime
|
|
|
|
###
|
|
|
|
|
2019-07-12 06:38:25 -04:00
|
|
|
FROM docker.io/python:${PYTHON_VERSION}-alpine3.10
|
2018-10-01 07:29:17 -04:00
|
|
|
|
2019-06-18 17:35:19 -04:00
|
|
|
# xmlsec is required for saml support
|
2018-10-01 07:29:17 -04:00
|
|
|
RUN apk add --no-cache --virtual .runtime_deps \
|
|
|
|
libffi \
|
|
|
|
libjpeg-turbo \
|
|
|
|
libressl \
|
|
|
|
libxslt \
|
|
|
|
libpq \
|
|
|
|
zlib \
|
2019-06-18 17:35:19 -04:00
|
|
|
su-exec \
|
2019-07-02 05:31:06 -04:00
|
|
|
tzdata \
|
2019-06-18 17:35:19 -04:00
|
|
|
xmlsec
|
2018-10-01 07:29:17 -04:00
|
|
|
|
|
|
|
COPY --from=builder /install /usr/local
|
|
|
|
COPY ./docker/start.py /start.py
|
|
|
|
COPY ./docker/conf /conf
|
|
|
|
|
2018-02-03 14:18:36 -05:00
|
|
|
VOLUME ["/data"]
|
|
|
|
|
2019-02-05 08:42:21 -05:00
|
|
|
EXPOSE 8008/tcp 8009/tcp 8448/tcp
|
2018-02-04 06:55:20 -05:00
|
|
|
|
2018-02-03 14:18:36 -05:00
|
|
|
ENTRYPOINT ["/start.py"]
|