2022-04-26 16:31:52 +02:00
|
|
|
# syntax=docker/dockerfile:1
|
2019-02-05 14:42:21 +01:00
|
|
|
# Dockerfile to build the matrixdotorg/synapse docker images.
|
|
|
|
#
|
2022-01-12 11:37:57 +01:00
|
|
|
# Note that it uses features which are only available in BuildKit - see
|
|
|
|
# https://docs.docker.com/go/buildkit/ for more information.
|
|
|
|
#
|
2019-02-05 14:42:21 +01:00
|
|
|
# To build the image, run `docker build` command from the root of the
|
|
|
|
# synapse repository:
|
|
|
|
#
|
2022-01-12 11:37:57 +01:00
|
|
|
# DOCKER_BUILDKIT=1 docker build -f docker/Dockerfile .
|
2019-02-05 14:42:21 +01:00
|
|
|
#
|
|
|
|
# There is an optional PYTHON_VERSION build argument which sets the
|
|
|
|
# version of python to build against: for example:
|
|
|
|
#
|
2022-03-01 14:55:18 +01:00
|
|
|
# DOCKER_BUILDKIT=1 docker build -f docker/Dockerfile --build-arg PYTHON_VERSION=3.10 .
|
2019-02-05 14:42:21 +01:00
|
|
|
#
|
|
|
|
|
2022-04-07 13:43:31 +02:00
|
|
|
# Irritatingly, there is no blessed guide on how to distribute an application with its
|
|
|
|
# poetry-managed environment in a docker image. We have opted for
|
|
|
|
# `poetry export | pip install -r /dev/stdin`, but there are known bugs in
|
|
|
|
# in `poetry export` whose fixes (scheduled for poetry 1.2) have yet to be released.
|
|
|
|
# In case we get bitten by those bugs in the future, the recommendations here might
|
|
|
|
# be useful:
|
|
|
|
# https://github.com/python-poetry/poetry/discussions/1879#discussioncomment-216865
|
|
|
|
# https://stackoverflow.com/questions/53835198/integrating-python-poetry-with-docker?answertab=scoredesc
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-03-01 14:55:18 +01:00
|
|
|
ARG PYTHON_VERSION=3.9
|
2018-02-03 20:18:36 +01:00
|
|
|
|
2018-10-01 13:29:17 +02:00
|
|
|
###
|
2022-04-07 13:43:31 +02:00
|
|
|
### Stage 0: generate requirements.txt
|
2018-10-01 13:29:17 +02:00
|
|
|
###
|
2022-09-16 17:38:54 +02:00
|
|
|
# We hardcode the use of Debian bullseye here because this could change upstream
|
|
|
|
# and other Dockerfiles used for testing are expecting bullseye.
|
|
|
|
FROM docker.io/python:${PYTHON_VERSION}-slim-bullseye as requirements
|
2018-09-10 16:02:42 +02:00
|
|
|
|
2022-01-12 11:37:57 +01:00
|
|
|
# RUN --mount is specific to buildkit and is documented at
|
|
|
|
# https://github.com/moby/buildkit/blob/master/frontend/dockerfile/docs/syntax.md#build-mounts-run---mount.
|
2022-04-07 13:43:31 +02:00
|
|
|
# Here we use it to set up a cache for apt (and below for pip), to improve
|
|
|
|
# rebuild speeds on slow connections.
|
|
|
|
RUN \
|
|
|
|
--mount=type=cache,target=/var/cache/apt,sharing=locked \
|
|
|
|
--mount=type=cache,target=/var/lib/apt,sharing=locked \
|
2022-08-03 12:16:32 +02:00
|
|
|
apt-get update -qq && apt-get install -yqq \
|
|
|
|
build-essential cargo git libffi-dev libssl-dev \
|
2022-04-07 13:43:31 +02:00
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
|
|
# We install poetry in its own build stage to avoid its dependencies conflicting with
|
|
|
|
# synapse's dependencies.
|
|
|
|
RUN --mount=type=cache,target=/root/.cache/pip \
|
2022-09-01 14:46:47 +02:00
|
|
|
pip install --user "poetry==1.2.0"
|
2022-04-07 13:43:31 +02:00
|
|
|
|
|
|
|
WORKDIR /synapse
|
|
|
|
|
|
|
|
# Copy just what we need to run `poetry export`...
|
2022-04-20 18:33:20 +02:00
|
|
|
COPY pyproject.toml poetry.lock /synapse/
|
2022-04-07 13:43:31 +02:00
|
|
|
|
2022-07-01 17:42:49 +02:00
|
|
|
|
|
|
|
# If specified, we won't verify the hashes of dependencies.
|
|
|
|
# This is only needed if the hashes of dependencies cannot be checked for some
|
|
|
|
# reason, such as when a git repository is used directly as a dependency.
|
|
|
|
ARG TEST_ONLY_SKIP_DEP_HASH_VERIFICATION
|
|
|
|
|
2022-08-01 12:55:31 +02:00
|
|
|
# If specified, we won't use the Poetry lockfile.
|
|
|
|
# Instead, we'll just install what a regular `pip install` would from PyPI.
|
|
|
|
ARG TEST_ONLY_IGNORE_POETRY_LOCKFILE
|
|
|
|
|
|
|
|
# Export the dependencies, but only if we're actually going to use the Poetry lockfile.
|
|
|
|
# Otherwise, just create an empty requirements file so that the Dockerfile can
|
|
|
|
# proceed.
|
|
|
|
RUN if [ -z "$TEST_ONLY_IGNORE_POETRY_LOCKFILE" ]; then \
|
|
|
|
/root/.local/bin/poetry export --extras all -o /synapse/requirements.txt ${TEST_ONLY_SKIP_DEP_HASH_VERIFICATION:+--without-hashes}; \
|
|
|
|
else \
|
|
|
|
touch /synapse/requirements.txt; \
|
|
|
|
fi
|
2022-04-07 13:43:31 +02:00
|
|
|
|
|
|
|
###
|
|
|
|
### Stage 1: builder
|
|
|
|
###
|
2022-09-16 17:38:54 +02:00
|
|
|
FROM docker.io/python:${PYTHON_VERSION}-slim-bullseye as builder
|
2022-04-07 13:43:31 +02:00
|
|
|
|
|
|
|
# install the OS build deps
|
2022-01-12 11:37:57 +01:00
|
|
|
RUN \
|
|
|
|
--mount=type=cache,target=/var/cache/apt,sharing=locked \
|
|
|
|
--mount=type=cache,target=/var/lib/apt,sharing=locked \
|
2022-06-15 16:42:27 +02:00
|
|
|
apt-get update -qq && apt-get install -yqq \
|
2021-03-26 19:42:58 +01:00
|
|
|
build-essential \
|
|
|
|
libffi-dev \
|
|
|
|
libjpeg-dev \
|
|
|
|
libpq-dev \
|
|
|
|
libssl-dev \
|
|
|
|
libwebp-dev \
|
|
|
|
libxml++2.6-dev \
|
|
|
|
libxslt1-dev \
|
|
|
|
openssl \
|
|
|
|
zlib1g-dev \
|
2022-07-01 17:42:49 +02:00
|
|
|
git \
|
2022-09-06 20:01:37 +02:00
|
|
|
curl \
|
2021-03-26 19:42:58 +01:00
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
|
2022-09-06 20:01:37 +02:00
|
|
|
|
|
|
|
# Install rust and ensure its in the PATH
|
|
|
|
ENV RUSTUP_HOME=/rust
|
|
|
|
ENV CARGO_HOME=/cargo
|
|
|
|
ENV PATH=/cargo/bin:/rust/bin:$PATH
|
|
|
|
RUN mkdir /rust /cargo
|
|
|
|
|
2022-10-12 11:47:02 +02:00
|
|
|
RUN curl -sSf https://sh.rustup.rs | sh -s -- -y --no-modify-path --default-toolchain stable --profile minimal
|
2022-09-06 20:01:37 +02:00
|
|
|
|
2022-10-13 20:16:21 +02:00
|
|
|
|
|
|
|
# arm64 builds consume a lot of memory if `CARGO_NET_GIT_FETCH_WITH_CLI` is not
|
|
|
|
# set to true, so we expose it as a build-arg.
|
|
|
|
ARG CARGO_NET_GIT_FETCH_WITH_CLI=false
|
|
|
|
ENV CARGO_NET_GIT_FETCH_WITH_CLI=$CARGO_NET_GIT_FETCH_WITH_CLI
|
|
|
|
|
2021-03-26 19:42:58 +01:00
|
|
|
# To speed up rebuilds, install all of the dependencies before we copy over
|
2022-04-07 13:43:31 +02:00
|
|
|
# the whole synapse project, so that this layer in the Docker cache can be
|
2021-03-26 19:42:58 +01:00
|
|
|
# used while you develop on the source
|
|
|
|
#
|
2022-04-07 13:43:31 +02:00
|
|
|
# This is aiming at installing the `[tool.poetry.depdendencies]` from pyproject.toml.
|
|
|
|
COPY --from=requirements /synapse/requirements.txt /synapse/
|
2022-01-12 11:37:57 +01:00
|
|
|
RUN --mount=type=cache,target=/root/.cache/pip \
|
2022-04-12 11:16:01 +02:00
|
|
|
pip install --prefix="/install" --no-deps --no-warn-script-location -r /synapse/requirements.txt
|
2021-03-26 19:42:58 +01:00
|
|
|
|
2022-04-07 13:43:31 +02:00
|
|
|
# Copy over the rest of the synapse source code.
|
2021-03-26 19:42:58 +01:00
|
|
|
COPY synapse /synapse/synapse/
|
2022-09-06 20:01:37 +02:00
|
|
|
COPY rust /synapse/rust/
|
2022-04-07 13:43:31 +02:00
|
|
|
# ... and what we need to `pip install`.
|
2022-10-11 12:53:34 +02:00
|
|
|
COPY pyproject.toml README.rst build_rust.py Cargo.toml Cargo.lock /synapse/
|
2021-03-26 19:42:58 +01:00
|
|
|
|
2022-08-01 12:55:31 +02:00
|
|
|
# Repeat of earlier build argument declaration, as this is a new build stage.
|
|
|
|
ARG TEST_ONLY_IGNORE_POETRY_LOCKFILE
|
|
|
|
|
2022-04-07 13:43:31 +02:00
|
|
|
# Install the synapse package itself.
|
2022-08-01 12:55:31 +02:00
|
|
|
# If we have populated requirements.txt, we don't install any dependencies
|
|
|
|
# as we should already have those from the previous `pip install` step.
|
|
|
|
RUN if [ -z "$TEST_ONLY_IGNORE_POETRY_LOCKFILE" ]; then \
|
|
|
|
pip install --prefix="/install" --no-deps --no-warn-script-location /synapse[all]; \
|
|
|
|
else \
|
|
|
|
pip install --prefix="/install" --no-warn-script-location /synapse[all]; \
|
|
|
|
fi
|
2018-10-01 13:29:17 +02:00
|
|
|
|
|
|
|
###
|
2022-04-07 13:43:31 +02:00
|
|
|
### Stage 2: runtime
|
2018-10-01 13:29:17 +02:00
|
|
|
###
|
|
|
|
|
2022-09-16 17:38:54 +02:00
|
|
|
FROM docker.io/python:${PYTHON_VERSION}-slim-bullseye
|
2018-10-01 13:29:17 +02:00
|
|
|
|
2021-04-08 14:49:14 +02: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'
|
|
|
|
|
2022-01-12 11:37:57 +01:00
|
|
|
RUN \
|
|
|
|
--mount=type=cache,target=/var/cache/apt,sharing=locked \
|
|
|
|
--mount=type=cache,target=/var/lib/apt,sharing=locked \
|
2022-06-15 16:42:27 +02:00
|
|
|
apt-get update -qq && apt-get install -yqq \
|
2021-03-26 19:42:58 +01:00
|
|
|
curl \
|
|
|
|
gosu \
|
|
|
|
libjpeg62-turbo \
|
|
|
|
libpq5 \
|
|
|
|
libwebp6 \
|
|
|
|
xmlsec1 \
|
|
|
|
libjemalloc2 \
|
|
|
|
libssl-dev \
|
|
|
|
openssl \
|
|
|
|
&& 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
|
|
|
|
|
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"]
|
2020-08-24 19:15:18 +02:00
|
|
|
|
2021-05-05 17:33:04 +02:00
|
|
|
HEALTHCHECK --start-period=5s --interval=15s --timeout=5s \
|
2021-03-26 19:42:58 +01:00
|
|
|
CMD curl -fSs http://localhost:8008/health || exit 1
|