Namespace
matrixdotorg
Image / Tag
synapse:v1.68.0
Content Digest
sha256:a878e46db2769a5e28b16c830f720841cb1bc434f4936ece14ac39fd7fccb7c0
Details
Created

2022-09-27 11:47:08 UTC

Size

123 MB

Content Digest
Labels
  • gitsha1
    3853011d01ad3f5034f53a9dfb7a06e36cf70ae9
  • org.opencontainers.image.documentation
    https://github.com/matrix-org/synapse/blob/master/docker/README.md
  • org.opencontainers.image.licenses
    Apache-2.0
  • org.opencontainers.image.source
    https://github.com/matrix-org/synapse.git
  • org.opencontainers.image.url
    https://matrix.org/docs/projects/server/synapse

Environment
GPG_KEY

E3FF2839C048B25C084DEBE9B26995E310250568

LANG

C.UTF-8

PATH

/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PYTHON_GET_PIP_SHA256

5aefe6ade911d997af080b315ebcb7f882212d070465df544e1175ac2be519b4

PYTHON_GET_PIP_URL

https://github.com/pypa/get-pip/raw/5eaac1050023df1f5c98b173b248c260023f2278/public/get-pip.py

PYTHON_PIP_VERSION

22.0.4

PYTHON_SETUPTOOLS_VERSION

58.1.0

PYTHON_VERSION

3.9.14


Layers

[#000] sha256:31b3f1ad4ce1f369084d0f959813c51df0ca17d9877d5ee88c2db6ff88341430 - 24.42% (29.9 MB)

[#001] sha256:f335cc1597f2f2d13ceea1c9b386aa1ac28efc46906a0a9cf1b4e368ec33a62a - 0.84% (1.03 MB)

[#002] sha256:0375df124bb5fa48304e5a21ec7006be664d6ca593b9ae9cdaee08483db35716 - 9.01% (11.1 MB)

[#003] sha256:90a356bcda5b863109c5fc87e1d26d3ae792076be04ebc771a2aa7a2523e0f64 - 0.0% (233 Bytes)

[#004] sha256:c82e0170c13b6f4126280ace0161a492f4ac144954df5325980c9c8ed46f9cc1 - 2.47% (3.03 MB)

[#005] sha256:eca5820b636e283d4ab025cad971a430efb1ee6aa4498a1c97199fa46f7f8336 - 16.31% (20 MB)

[#006] sha256:6156d771ff7a170d8ab38d86f7ad68c0bdc05652641cbec222e2e95a17e6a71f - 46.95% (57.6 MB)

[#007] sha256:4f90d3131bc730adfff119a8f94feb808ae9bf1c84b82b0d3802987add0de621 - 0.0% (3.01 KB)

[#008] sha256:a1dbf98e88ea4ff87f70c7dff70809f52740de7df214dfb744738114c1103256 - 0.0% (2.75 KB)


History
2022-09-13 00:56:29 UTC

/bin/sh -c #(nop) ADD file:5bd53bff884e470b3c12425132975ab9c6f99002c62c43bca1ff5cde9d863b92 in /

2022-09-13 00:56:29 UTC

/bin/sh -c #(nop) CMD ["bash"]

2022-09-13 01:04:55 UTC

/bin/sh -c #(nop) ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2022-09-13 01:04:55 UTC

/bin/sh -c #(nop) ENV LANG=C.UTF-8

2022-09-13 01:05:00 UTC

/bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates netbase tzdata ; rm -rf /var/lib/apt/lists/*

2022-09-13 01:56:33 UTC

/bin/sh -c #(nop) ENV GPG_KEY=E3FF2839C048B25C084DEBE9B26995E310250568

2022-09-13 01:56:33 UTC

/bin/sh -c #(nop) ENV PYTHON_VERSION=3.9.14

2022-09-13 02:03:30 UTC

/bin/sh -c set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends dpkg-dev gcc gnupg dirmngr libbluetooth-dev libbz2-dev libc6-dev libexpat1-dev libffi-dev libgdbm-dev liblzma-dev libncursesw5-dev libreadline-dev libsqlite3-dev libssl-dev make tk-dev uuid-dev wget xz-utils zlib1g-dev ; wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz"; wget -O python.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc"; GNUPGHOME="$(mktemp -d)"; export GNUPGHOME; gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$GPG_KEY"; gpg --batch --verify python.tar.xz.asc python.tar.xz; command -v gpgconf > /dev/null && gpgconf --kill all || :; rm -rf "$GNUPGHOME" python.tar.xz.asc; mkdir -p /usr/src/python; tar --extract --directory /usr/src/python --strip-components=1 --file python.tar.xz; rm python.tar.xz; cd /usr/src/python; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; ./configure --build="$gnuArch" --enable-loadable-sqlite-extensions --enable-optimizations --enable-option-checking=fatal --enable-shared --with-system-expat --without-ensurepip ; nproc="$(nproc)"; make -j "$nproc" LDFLAGS="-Wl,--strip-all" ; make install; cd /; rm -rf /usr/src/python; find /usr/local -depth \( \( -type d -a \( -name test -o -name tests -o -name idle_test \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' -o -name 'libpython*.a' \) \) \) -exec rm -rf '{}' + ; ldconfig; apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark; find /usr/local -type f -executable -not \( -name '*tkinter*' \) -exec ldd '{}' ';' | awk '/=>/ { print $(NF-1) }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; python3 --version

2022-09-13 02:03:31 UTC

/bin/sh -c set -eux; for src in idle3 pydoc3 python3 python3-config; do dst="$(echo "$src" | tr -d 3)"; [ -s "/usr/local/bin/$src" ]; [ ! -e "/usr/local/bin/$dst" ]; ln -svT "$src" "/usr/local/bin/$dst"; done

2022-09-13 02:03:31 UTC

/bin/sh -c #(nop) ENV PYTHON_PIP_VERSION=22.0.4

2022-09-13 02:03:31 UTC

/bin/sh -c #(nop) ENV PYTHON_SETUPTOOLS_VERSION=58.1.0

2022-09-13 02:03:31 UTC

/bin/sh -c #(nop) ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/5eaac1050023df1f5c98b173b248c260023f2278/public/get-pip.py

2022-09-13 02:03:31 UTC

/bin/sh -c #(nop) ENV PYTHON_GET_PIP_SHA256=5aefe6ade911d997af080b315ebcb7f882212d070465df544e1175ac2be519b4

2022-09-13 02:03:43 UTC

/bin/sh -c set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends wget; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum -c -; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; export PYTHONDONTWRITEBYTECODE=1; python get-pip.py --disable-pip-version-check --no-cache-dir --no-compile "pip==$PYTHON_PIP_VERSION" "setuptools==$PYTHON_SETUPTOOLS_VERSION" ; rm -f get-pip.py; pip --version

2022-09-13 02:03:43 UTC

/bin/sh -c #(nop) CMD ["python3"]

2022-09-27 11:45:10 UTC (buildkit.dockerfile.v0)

LABEL org.opencontainers.image.url=https://matrix.org/docs/projects/server/synapse

2022-09-27 11:45:10 UTC (buildkit.dockerfile.v0)

LABEL org.opencontainers.image.documentation=https://github.com/matrix-org/synapse/blob/master/docker/README.md

2022-09-27 11:45:10 UTC (buildkit.dockerfile.v0)

LABEL org.opencontainers.image.source=https://github.com/matrix-org/synapse.git

2022-09-27 11:45:10 UTC (buildkit.dockerfile.v0)

LABEL org.opencontainers.image.licenses=Apache-2.0

2022-09-27 11:45:10 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c apt-get update -qq && apt-get install -yqq curl gosu libjpeg62-turbo libpq5 libwebp6 xmlsec1 libjemalloc2 libssl-dev openssl && rm -rf /var/lib/apt/lists/* # buildkit

2022-09-27 11:47:08 UTC (buildkit.dockerfile.v0)

COPY /install /usr/local # buildkit

2022-09-27 11:47:08 UTC (buildkit.dockerfile.v0)

COPY ./docker/start.py /start.py # buildkit

2022-09-27 11:47:08 UTC (buildkit.dockerfile.v0)

COPY ./docker/conf /conf # buildkit

2022-09-27 11:47:08 UTC (buildkit.dockerfile.v0)

EXPOSE map[8008/tcp:{} 8009/tcp:{} 8448/tcp:{}]

2022-09-27 11:47:08 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["/start.py"]

2022-09-27 11:47:08 UTC (buildkit.dockerfile.v0)

HEALTHCHECK &{["CMD-SHELL" "curl -fSs http://localhost:8008/health || exit 1"] "15s" "5s" "5s" '\x00'}

Details
Created

2022-09-27 12:03:41 UTC

Size

108 MB

Content Digest
Labels
  • gitsha1
    3853011d01ad3f5034f53a9dfb7a06e36cf70ae9
  • org.opencontainers.image.documentation
    https://github.com/matrix-org/synapse/blob/master/docker/README.md
  • org.opencontainers.image.licenses
    Apache-2.0
  • org.opencontainers.image.source
    https://github.com/matrix-org/synapse.git
  • org.opencontainers.image.url
    https://matrix.org/docs/projects/server/synapse

Environment
GPG_KEY

E3FF2839C048B25C084DEBE9B26995E310250568

LANG

C.UTF-8

PATH

/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PYTHON_GET_PIP_SHA256

5aefe6ade911d997af080b315ebcb7f882212d070465df544e1175ac2be519b4

PYTHON_GET_PIP_URL

https://github.com/pypa/get-pip/raw/5eaac1050023df1f5c98b173b248c260023f2278/public/get-pip.py

PYTHON_PIP_VERSION

22.0.4

PYTHON_SETUPTOOLS_VERSION

58.1.0

PYTHON_VERSION

3.9.14


Layers

[#000] sha256:3d898485473e3507374cea2e09f019c2ff5728f0911aa36c70b7a7235e9bc8ac - 26.53% (28.7 MB)

[#001] sha256:3c5b9c8e87fc28e34300df7fec49981bb266163998cd0f742cff4d0ecb863cf6 - 0.94% (1.01 MB)

[#002] sha256:a3c2a06377c92acad3717b45d62176fb849490ca93327b8f71791c0cd7519e05 - 10.23% (11.1 MB)

[#003] sha256:e4d60b39e4e643cdaf54449ec8468c74248b252e1e1103477f8613c11c06937f - 0.0% (233 Bytes)

[#004] sha256:c0d0710da27d860f03a8870dfc4dc7a3e7b0b45e99dfbef7195fe3ed49bf6904 - 2.61% (2.82 MB)

[#005] sha256:bde7d6990be8ee57a6f573808a533e86de094eec2c802c4910a5b6ff52587b5d - 18.25% (19.7 MB)

[#006] sha256:0d422873259ad0edb98159f0059c9885af2f8cc45e762c8d9b733f94cc8ed955 - 41.43% (44.8 MB)

[#007] sha256:4f90d3131bc730adfff119a8f94feb808ae9bf1c84b82b0d3802987add0de621 - 0.0% (3.01 KB)

[#008] sha256:0d6489174bfcdf079b58c27ee956312b6d90c7aee1887d98673a00608182a7dd - 0.0% (2.75 KB)


History
2022-09-13 02:10:56 UTC

/bin/sh -c #(nop) ADD file:e8f00260a993aacae732bef51e6074b6c064d50a8ce1f0c44d53fe9e3c868e43 in /

2022-09-13 02:10:56 UTC

/bin/sh -c #(nop) CMD ["bash"]

2022-09-13 02:21:20 UTC

/bin/sh -c #(nop) ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2022-09-13 02:21:21 UTC

/bin/sh -c #(nop) ENV LANG=C.UTF-8

2022-09-13 02:21:27 UTC

/bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates netbase tzdata ; rm -rf /var/lib/apt/lists/*

2022-09-13 03:16:12 UTC

/bin/sh -c #(nop) ENV GPG_KEY=E3FF2839C048B25C084DEBE9B26995E310250568

2022-09-13 03:16:12 UTC

/bin/sh -c #(nop) ENV PYTHON_VERSION=3.9.14

2022-09-13 03:21:30 UTC

/bin/sh -c set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends dpkg-dev gcc gnupg dirmngr libbluetooth-dev libbz2-dev libc6-dev libexpat1-dev libffi-dev libgdbm-dev liblzma-dev libncursesw5-dev libreadline-dev libsqlite3-dev libssl-dev make tk-dev uuid-dev wget xz-utils zlib1g-dev ; wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz"; wget -O python.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc"; GNUPGHOME="$(mktemp -d)"; export GNUPGHOME; gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$GPG_KEY"; gpg --batch --verify python.tar.xz.asc python.tar.xz; command -v gpgconf > /dev/null && gpgconf --kill all || :; rm -rf "$GNUPGHOME" python.tar.xz.asc; mkdir -p /usr/src/python; tar --extract --directory /usr/src/python --strip-components=1 --file python.tar.xz; rm python.tar.xz; cd /usr/src/python; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; ./configure --build="$gnuArch" --enable-loadable-sqlite-extensions --enable-optimizations --enable-option-checking=fatal --enable-shared --with-system-expat --without-ensurepip ; nproc="$(nproc)"; make -j "$nproc" LDFLAGS="-Wl,--strip-all" ; make install; cd /; rm -rf /usr/src/python; find /usr/local -depth \( \( -type d -a \( -name test -o -name tests -o -name idle_test \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' -o -name 'libpython*.a' \) \) \) -exec rm -rf '{}' + ; ldconfig; apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark; find /usr/local -type f -executable -not \( -name '*tkinter*' \) -exec ldd '{}' ';' | awk '/=>/ { print $(NF-1) }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; python3 --version

2022-09-13 03:21:31 UTC

/bin/sh -c set -eux; for src in idle3 pydoc3 python3 python3-config; do dst="$(echo "$src" | tr -d 3)"; [ -s "/usr/local/bin/$src" ]; [ ! -e "/usr/local/bin/$dst" ]; ln -svT "$src" "/usr/local/bin/$dst"; done

2022-09-13 03:21:32 UTC

/bin/sh -c #(nop) ENV PYTHON_PIP_VERSION=22.0.4

2022-09-13 03:21:33 UTC

/bin/sh -c #(nop) ENV PYTHON_SETUPTOOLS_VERSION=58.1.0

2022-09-13 03:21:34 UTC

/bin/sh -c #(nop) ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/5eaac1050023df1f5c98b173b248c260023f2278/public/get-pip.py

2022-09-13 03:21:35 UTC

/bin/sh -c #(nop) ENV PYTHON_GET_PIP_SHA256=5aefe6ade911d997af080b315ebcb7f882212d070465df544e1175ac2be519b4

2022-09-13 03:21:47 UTC

/bin/sh -c set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends wget; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum -c -; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; export PYTHONDONTWRITEBYTECODE=1; python get-pip.py --disable-pip-version-check --no-cache-dir --no-compile "pip==$PYTHON_PIP_VERSION" "setuptools==$PYTHON_SETUPTOOLS_VERSION" ; rm -f get-pip.py; pip --version

2022-09-13 03:21:47 UTC

/bin/sh -c #(nop) CMD ["python3"]

2022-09-27 11:41:16 UTC (buildkit.dockerfile.v0)

LABEL org.opencontainers.image.url=https://matrix.org/docs/projects/server/synapse

2022-09-27 11:41:16 UTC (buildkit.dockerfile.v0)

LABEL org.opencontainers.image.documentation=https://github.com/matrix-org/synapse/blob/master/docker/README.md

2022-09-27 11:41:16 UTC (buildkit.dockerfile.v0)

LABEL org.opencontainers.image.source=https://github.com/matrix-org/synapse.git

2022-09-27 11:41:16 UTC (buildkit.dockerfile.v0)

LABEL org.opencontainers.image.licenses=Apache-2.0

2022-09-27 11:41:16 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c apt-get update -qq && apt-get install -yqq curl gosu libjpeg62-turbo libpq5 libwebp6 xmlsec1 libjemalloc2 libssl-dev openssl && rm -rf /var/lib/apt/lists/* # buildkit

2022-09-27 12:03:41 UTC (buildkit.dockerfile.v0)

COPY /install /usr/local # buildkit

2022-09-27 12:03:41 UTC (buildkit.dockerfile.v0)

COPY ./docker/start.py /start.py # buildkit

2022-09-27 12:03:41 UTC (buildkit.dockerfile.v0)

COPY ./docker/conf /conf # buildkit

2022-09-27 12:03:41 UTC (buildkit.dockerfile.v0)

EXPOSE map[8008/tcp:{} 8009/tcp:{} 8448/tcp:{}]

2022-09-27 12:03:41 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["/start.py"]

2022-09-27 12:03:41 UTC (buildkit.dockerfile.v0)

HEALTHCHECK &{["CMD-SHELL" "curl -fSs http://localhost:8008/health || exit 1"] "15s" "5s" "5s" '\x00'}

Danger Zone
Delete Tag

Please be careful as this will not just delete the reference but also the actual content!

For example when you have latest and v1.2.3 both pointing to the same image
the deletion of latest will also permanently remove v1.2.3.

Delete