You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

174 lines
6.1 KiB

  1. # syntax=docker/dockerfile:1
  2. # Dockerfile to build the matrixdotorg/synapse docker images.
  3. #
  4. # Note that it uses features which are only available in BuildKit - see
  5. # https://docs.docker.com/go/buildkit/ for more information.
  6. #
  7. # To build the image, run `docker build` command from the root of the
  8. # synapse repository:
  9. #
  10. # DOCKER_BUILDKIT=1 docker build -f docker/Dockerfile .
  11. #
  12. # There is an optional PYTHON_VERSION build argument which sets the
  13. # version of python to build against: for example:
  14. #
  15. # DOCKER_BUILDKIT=1 docker build -f docker/Dockerfile --build-arg PYTHON_VERSION=3.10 .
  16. #
  17. # Irritatingly, there is no blessed guide on how to distribute an application with its
  18. # poetry-managed environment in a docker image. We have opted for
  19. # `poetry export | pip install -r /dev/stdin`, but there are known bugs in
  20. # in `poetry export` whose fixes (scheduled for poetry 1.2) have yet to be released.
  21. # In case we get bitten by those bugs in the future, the recommendations here might
  22. # be useful:
  23. # https://github.com/python-poetry/poetry/discussions/1879#discussioncomment-216865
  24. # https://stackoverflow.com/questions/53835198/integrating-python-poetry-with-docker?answertab=scoredesc
  25. ARG PYTHON_VERSION=3.9
  26. ###
  27. ### Stage 0: generate requirements.txt
  28. ###
  29. # We hardcode the use of Debian bullseye here because this could change upstream
  30. # and other Dockerfiles used for testing are expecting bullseye.
  31. FROM docker.io/python:${PYTHON_VERSION}-slim-bullseye as requirements
  32. # RUN --mount is specific to buildkit and is documented at
  33. # https://github.com/moby/buildkit/blob/master/frontend/dockerfile/docs/syntax.md#build-mounts-run---mount.
  34. # Here we use it to set up a cache for apt (and below for pip), to improve
  35. # rebuild speeds on slow connections.
  36. RUN \
  37. --mount=type=cache,target=/var/cache/apt,sharing=locked \
  38. --mount=type=cache,target=/var/lib/apt,sharing=locked \
  39. apt-get update -qq && apt-get install -yqq \
  40. build-essential cargo git libffi-dev libssl-dev \
  41. && rm -rf /var/lib/apt/lists/*
  42. # We install poetry in its own build stage to avoid its dependencies conflicting with
  43. # synapse's dependencies.
  44. RUN --mount=type=cache,target=/root/.cache/pip \
  45. pip install --user "poetry==1.2.0"
  46. WORKDIR /synapse
  47. # Copy just what we need to run `poetry export`...
  48. COPY pyproject.toml poetry.lock /synapse/
  49. # If specified, we won't verify the hashes of dependencies.
  50. # This is only needed if the hashes of dependencies cannot be checked for some
  51. # reason, such as when a git repository is used directly as a dependency.
  52. ARG TEST_ONLY_SKIP_DEP_HASH_VERIFICATION
  53. # If specified, we won't use the Poetry lockfile.
  54. # Instead, we'll just install what a regular `pip install` would from PyPI.
  55. ARG TEST_ONLY_IGNORE_POETRY_LOCKFILE
  56. # Export the dependencies, but only if we're actually going to use the Poetry lockfile.
  57. # Otherwise, just create an empty requirements file so that the Dockerfile can
  58. # proceed.
  59. RUN if [ -z "$TEST_ONLY_IGNORE_POETRY_LOCKFILE" ]; then \
  60. /root/.local/bin/poetry export --extras all -o /synapse/requirements.txt ${TEST_ONLY_SKIP_DEP_HASH_VERIFICATION:+--without-hashes}; \
  61. else \
  62. touch /synapse/requirements.txt; \
  63. fi
  64. ###
  65. ### Stage 1: builder
  66. ###
  67. FROM docker.io/python:${PYTHON_VERSION}-slim-bullseye as builder
  68. # install the OS build deps
  69. RUN \
  70. --mount=type=cache,target=/var/cache/apt,sharing=locked \
  71. --mount=type=cache,target=/var/lib/apt,sharing=locked \
  72. apt-get update -qq && apt-get install -yqq \
  73. build-essential \
  74. libffi-dev \
  75. libjpeg-dev \
  76. libpq-dev \
  77. libssl-dev \
  78. libwebp-dev \
  79. libxml++2.6-dev \
  80. libxslt1-dev \
  81. openssl \
  82. zlib1g-dev \
  83. git \
  84. curl \
  85. && rm -rf /var/lib/apt/lists/*
  86. # Install rust and ensure its in the PATH
  87. ENV RUSTUP_HOME=/rust
  88. ENV CARGO_HOME=/cargo
  89. ENV PATH=/cargo/bin:/rust/bin:$PATH
  90. RUN mkdir /rust /cargo
  91. RUN curl -sSf https://sh.rustup.rs | sh -s -- -y --no-modify-path --default-toolchain stable
  92. # To speed up rebuilds, install all of the dependencies before we copy over
  93. # the whole synapse project, so that this layer in the Docker cache can be
  94. # used while you develop on the source
  95. #
  96. # This is aiming at installing the `[tool.poetry.depdendencies]` from pyproject.toml.
  97. COPY --from=requirements /synapse/requirements.txt /synapse/
  98. RUN --mount=type=cache,target=/root/.cache/pip \
  99. pip install --prefix="/install" --no-deps --no-warn-script-location -r /synapse/requirements.txt
  100. # Copy over the rest of the synapse source code.
  101. COPY synapse /synapse/synapse/
  102. COPY rust /synapse/rust/
  103. # ... and what we need to `pip install`.
  104. COPY pyproject.toml README.rst build_rust.py Cargo.toml Cargo.lock /synapse/
  105. # Repeat of earlier build argument declaration, as this is a new build stage.
  106. ARG TEST_ONLY_IGNORE_POETRY_LOCKFILE
  107. # Install the synapse package itself.
  108. # If we have populated requirements.txt, we don't install any dependencies
  109. # as we should already have those from the previous `pip install` step.
  110. RUN if [ -z "$TEST_ONLY_IGNORE_POETRY_LOCKFILE" ]; then \
  111. pip install --prefix="/install" --no-deps --no-warn-script-location /synapse[all]; \
  112. else \
  113. pip install --prefix="/install" --no-warn-script-location /synapse[all]; \
  114. fi
  115. ###
  116. ### Stage 2: runtime
  117. ###
  118. FROM docker.io/python:${PYTHON_VERSION}-slim-bullseye
  119. LABEL org.opencontainers.image.url='https://matrix.org/docs/projects/server/synapse'
  120. LABEL org.opencontainers.image.documentation='https://github.com/matrix-org/synapse/blob/master/docker/README.md'
  121. LABEL org.opencontainers.image.source='https://github.com/matrix-org/synapse.git'
  122. LABEL org.opencontainers.image.licenses='Apache-2.0'
  123. RUN \
  124. --mount=type=cache,target=/var/cache/apt,sharing=locked \
  125. --mount=type=cache,target=/var/lib/apt,sharing=locked \
  126. apt-get update -qq && apt-get install -yqq \
  127. curl \
  128. gosu \
  129. libjpeg62-turbo \
  130. libpq5 \
  131. libwebp6 \
  132. xmlsec1 \
  133. libjemalloc2 \
  134. libssl-dev \
  135. openssl \
  136. && rm -rf /var/lib/apt/lists/*
  137. COPY --from=builder /install /usr/local
  138. COPY ./docker/start.py /start.py
  139. COPY ./docker/conf /conf
  140. EXPOSE 8008/tcp 8009/tcp 8448/tcp
  141. ENTRYPOINT ["/start.py"]
  142. HEALTHCHECK --start-period=5s --interval=15s --timeout=5s \
  143. CMD curl -fSs http://localhost:8008/health || exit 1