2019-02-05 14:42:21 +01: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 06:20:53 +02:00
|
|
|
ARG PYTHON_VERSION=3.7
|
2018-02-03 20:18:36 +01:00
|
|
|
|
2018-10-01 13:29:17 +02:00
|
|
|
###
|
|
|
|
### Stage 0: builder
|
|
|
|
###
|
2020-07-17 18:40:53 +02:00
|
|
|
FROM docker.io/python:${PYTHON_VERSION}-slim as builder
|
2018-09-10 16:02:42 +02:00
|
|
|
|
2018-10-01 13:29:17 +02:00
|
|
|
# install the OS build deps
|
|
|
|
|
|
|
|
|
2020-07-17 18:40:53 +02:00
|
|
|
RUN apt-get update && apt-get install -y \
|
|
|
|
build-essential \
|
|
|
|
libpq-dev \
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
2018-10-01 13:29:17 +02:00
|
|
|
|
2020-07-17 18:40:53 +02:00
|
|
|
# Build dependencies that are not available as wheels, to speed up rebuilds
|
2018-10-01 13:29:17 +02:00
|
|
|
RUN pip install --prefix="/install" --no-warn-script-location \
|
2020-07-17 18:40:53 +02:00
|
|
|
frozendict \
|
|
|
|
jaeger-client \
|
|
|
|
opentracing \
|
|
|
|
prometheus-client \
|
|
|
|
psycopg2 \
|
|
|
|
pycparser \
|
|
|
|
pyrsistent \
|
|
|
|
pyyaml \
|
|
|
|
simplejson \
|
|
|
|
threadloop \
|
|
|
|
thrift
|
2018-10-01 13:29:17 +02:00
|
|
|
|
|
|
|
# now install synapse and all of the python deps to /install.
|
2019-02-05 12:44:40 +01:00
|
|
|
COPY synapse /synapse/synapse/
|
|
|
|
COPY scripts /synapse/scripts/
|
|
|
|
COPY MANIFEST.in README.rst setup.py synctl /synapse/
|
|
|
|
|
2018-10-01 13:29:17 +02:00
|
|
|
RUN pip install --prefix="/install" --no-warn-script-location \
|
2019-01-09 17:37:51 +01:00
|
|
|
/synapse[all]
|
2018-10-01 13:29:17 +02:00
|
|
|
|
|
|
|
###
|
|
|
|
### Stage 1: runtime
|
|
|
|
###
|
|
|
|
|
2020-07-17 18:40:53 +02:00
|
|
|
FROM docker.io/python:${PYTHON_VERSION}-slim
|
2018-10-01 13:29:17 +02:00
|
|
|
|
2020-07-17 18:40:53 +02:00
|
|
|
RUN apt-get update && apt-get install -y \
|
|
|
|
libpq5 \
|
|
|
|
xmlsec1 \
|
|
|
|
gosu \
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
2018-10-01 13:29:17 +02:00
|
|
|
|
|
|
|
COPY --from=builder /install /usr/local
|
|
|
|
COPY ./docker/start.py /start.py
|
|
|
|
COPY ./docker/conf /conf
|
|
|
|
|
2018-02-03 20:18:36 +01:00
|
|
|
VOLUME ["/data"]
|
|
|
|
|
2019-02-05 14:42:21 +01:00
|
|
|
EXPOSE 8008/tcp 8009/tcp 8448/tcp
|
2018-02-04 12:55:20 +01:00
|
|
|
|
2018-02-03 20:18:36 +01:00
|
|
|
ENTRYPOINT ["/start.py"]
|