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 .
|
|
|
|
#
|
|
|
|
|
2020-11-02 11:33:06 -05:00
|
|
|
ARG PYTHON_VERSION=3.8
|
2018-02-03 14:18:36 -05:00
|
|
|
|
2018-10-01 07:29:17 -04:00
|
|
|
###
|
|
|
|
### Stage 0: builder
|
|
|
|
###
|
2020-07-17 12:40:53 -04:00
|
|
|
FROM docker.io/python:${PYTHON_VERSION}-slim as builder
|
2018-09-10 10:02:42 -04:00
|
|
|
|
2018-10-01 07:29:17 -04:00
|
|
|
# install the OS build deps
|
2020-07-17 12:40:53 -04:00
|
|
|
RUN apt-get update && apt-get install -y \
|
2021-03-26 14:42:58 -04:00
|
|
|
build-essential \
|
|
|
|
libffi-dev \
|
|
|
|
libjpeg-dev \
|
|
|
|
libpq-dev \
|
|
|
|
libssl-dev \
|
|
|
|
libwebp-dev \
|
|
|
|
libxml++2.6-dev \
|
|
|
|
libxslt1-dev \
|
|
|
|
openssl \
|
|
|
|
rustc \
|
|
|
|
zlib1g-dev \
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
|
|
# Copy just what we need to pip install
|
2019-02-05 06:44:40 -05:00
|
|
|
COPY scripts /synapse/scripts/
|
|
|
|
COPY MANIFEST.in README.rst setup.py synctl /synapse/
|
2021-03-26 14:42:58 -04:00
|
|
|
COPY synapse/__init__.py /synapse/synapse/__init__.py
|
|
|
|
COPY synapse/python_dependencies.py /synapse/synapse/python_dependencies.py
|
2019-02-05 06:44:40 -05:00
|
|
|
|
2021-03-26 14:42:58 -04:00
|
|
|
# To speed up rebuilds, install all of the dependencies before we copy over
|
|
|
|
# the whole synapse project so that we this layer in the Docker cache can be
|
|
|
|
# used while you develop on the source
|
|
|
|
#
|
|
|
|
# This is aiming at installing the `install_requires` and `extras_require` from `setup.py`
|
2018-10-01 07:29:17 -04:00
|
|
|
RUN pip install --prefix="/install" --no-warn-script-location \
|
2021-03-26 14:42:58 -04:00
|
|
|
/synapse[all]
|
|
|
|
|
|
|
|
# Copy over the rest of the project
|
|
|
|
COPY synapse /synapse/synapse/
|
|
|
|
|
|
|
|
# Install the synapse package itself and all of its children packages.
|
|
|
|
#
|
|
|
|
# This is aiming at installing only the `packages=find_packages(...)` from `setup.py
|
|
|
|
RUN pip install --prefix="/install" --no-deps --no-warn-script-location /synapse
|
2018-10-01 07:29:17 -04:00
|
|
|
|
|
|
|
###
|
|
|
|
### Stage 1: runtime
|
|
|
|
###
|
|
|
|
|
2020-07-17 12:40:53 -04:00
|
|
|
FROM docker.io/python:${PYTHON_VERSION}-slim
|
2018-10-01 07:29:17 -04:00
|
|
|
|
2021-04-08 08:49:14 -04:00
|
|
|
LABEL org.opencontainers.image.url='https://matrix.org/docs/projects/server/synapse'
|
|
|
|
LABEL org.opencontainers.image.documentation='https://github.com/matrix-org/synapse/blob/master/docker/README.md'
|
|
|
|
LABEL org.opencontainers.image.source='https://github.com/matrix-org/synapse.git'
|
|
|
|
LABEL org.opencontainers.image.licenses='Apache-2.0'
|
|
|
|
|
2020-07-17 12:40:53 -04:00
|
|
|
RUN apt-get update && apt-get install -y \
|
2021-03-26 14:42:58 -04:00
|
|
|
curl \
|
|
|
|
gosu \
|
|
|
|
libjpeg62-turbo \
|
|
|
|
libpq5 \
|
|
|
|
libwebp6 \
|
|
|
|
xmlsec1 \
|
|
|
|
libjemalloc2 \
|
|
|
|
libssl-dev \
|
|
|
|
openssl \
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
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"]
|
2020-08-24 13:15:18 -04:00
|
|
|
|
2021-05-05 11:33:04 -04:00
|
|
|
HEALTHCHECK --start-period=5s --interval=15s --timeout=5s \
|
2021-03-26 14:42:58 -04:00
|
|
|
CMD curl -fSs http://localhost:8008/health || exit 1
|