Namespace
matrixdotorg
Image / Tag
synapse:v1.2.0rc1
Content Digest
sha256:ba0f15c7b019c55e33e0aecd5d25aaab7806da5f71b9b89c4deda547235b9885
Details
Created

2019-07-22 12:25:35 UTC

Size

70.3 MB

Content Digest
Labels
  • gitsha1
    8b0d5b171e1af3eb9a8a380af1be0f9c71d22d17

Environment
GPG_KEY

0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D

LANG

C.UTF-8

PATH

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

PYTHON_PIP_VERSION

19.1.1

PYTHON_VERSION

3.7.4


Layers

[#000] sha256:0503825856099e6adb39c8297af09547f69684b7016b7f3680ed801aa310baaa - 3.78% (2.66 MB)

[#001] sha256:dac2222ca532c66bfe13f56c35cd27857cf4c593767dce7b256f515ed0fe69fd - 0.41% (295 KB)

[#002] sha256:29a7fe408caae7f6eafff63f5cc03ea1a8b6d48a31fe6ed31db71dfaec7fc4a5 - 39.16% (27.5 MB)

[#003] sha256:6ad337b9b53fb56a16e79c9e3411c01f3bfe69369052377f403253e44f3f8a01 - 0.0% (231 Bytes)

[#004] sha256:31d663a76478e1ed084c0277f5664c11e7c4be5aca860f65dd0ce25d5a54684b - 2.47% (1.74 MB)

[#005] sha256:f16dbedfa517332b4ad1a1c341e70a426385e1bca9563e4aa8a13a809de70699 - 6.53% (4.59 MB)

[#006] sha256:fed516ed92294d968c2f84df84b032bf2678e5f11170f4f71316f04a475a7444 - 47.64% (33.5 MB)

[#007] sha256:f487b25f6e8ee9b2073a29757611d35880bc48ba3de05c6d63978a7d84760e5c - 0.0% (2.5 KB)

[#008] sha256:8ae911cce86fc7deb5068d1bf3fa816dad7ed64225e8deebe78b18c2736d8613 - 0.0% (2.19 KB)


History
2019-07-11 22:20:52 UTC

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

2019-07-11 22:20:52 UTC

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

2019-07-12 00:59:55 UTC

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

2019-07-12 00:59:56 UTC

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

2019-07-12 00:59:58 UTC

/bin/sh -c apk add --no-cache ca-certificates

2019-07-12 01:12:49 UTC

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

2019-07-12 01:12:49 UTC

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

2019-07-13 14:37:36 UTC

/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps gnupg tar xz && 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" && export GNUPGHOME="$(mktemp -d)" && gpg --batch --keyserver ha.pool.sks-keyservers.net --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 -xJC /usr/src/python --strip-components=1 -f python.tar.xz && rm python.tar.xz && apk add --no-cache --virtual .build-deps bzip2-dev coreutils dpkg-dev dpkg expat-dev findutils gcc gdbm-dev libc-dev libffi-dev libnsl-dev libtirpc-dev linux-headers make ncurses-dev openssl-dev pax-utils readline-dev sqlite-dev tcl-dev tk tk-dev util-linux-dev xz-dev zlib-dev && apk del .fetch-deps && cd /usr/src/python && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && ./configure --build="$gnuArch" --enable-loadable-sqlite-extensions --enable-optimizations --enable-shared --with-system-expat --with-system-ffi --without-ensurepip && make -j "$(nproc)" EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000" PROFILE_TASK='-m test.regrtest --pgo test_array test_base64 test_binascii test_binhex test_binop test_bytes test_c_locale_coercion test_class test_cmath test_codecs test_compile test_complex test_csv test_decimal test_dict test_float test_fstring test_hashlib test_io test_iter test_json test_long test_math test_memoryview test_pickle test_re test_set test_slice test_struct test_threading test_time test_traceback test_unicode ' && make install && find /usr/local -type f -executable -not \( -name '*tkinter*' \) -exec scanelf --needed --nobanner --format '%n#p' '{}' ';' | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | xargs -rt apk add --no-cache --virtual .python-rundeps && apk del .build-deps && find /usr/local -depth \( \( -type d -a \( -name test -o -name tests \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \) -exec rm -rf '{}' + && rm -rf /usr/src/python && python3 --version

2019-07-13 14:37:36 UTC

/bin/sh -c cd /usr/local/bin && ln -s idle3 idle && ln -s pydoc3 pydoc && ln -s python3 python && ln -s python3-config python-config

2019-07-13 14:37:37 UTC

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

2019-07-13 14:37:41 UTC

/bin/sh -c set -ex; wget -O get-pip.py 'https://bootstrap.pypa.io/get-pip.py'; python get-pip.py --disable-pip-version-check --no-cache-dir "pip==$PYTHON_PIP_VERSION" ; pip --version; find /usr/local -depth \( \( -type d -a \( -name test -o -name tests \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \) -exec rm -rf '{}' +; rm -f get-pip.py

2019-07-13 14:37:41 UTC

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

2019-07-22 12:25:30 UTC

/bin/sh -c apk add --no-cache --virtual .runtime_deps libffi libjpeg-turbo libressl libxslt libpq zlib su-exec tzdata xmlsec

2019-07-22 12:25:35 UTC

/bin/sh -c #(nop) COPY dir:b52834f32544d776728a45015afc6a658b08a95a27e4f0ae57bb30739a5c48b8 in /usr/local

2019-07-22 12:25:35 UTC

/bin/sh -c #(nop) COPY file:8e20943070b12d15a0186c3e74a62d49d8f993a97ad9ead4b01dd86459d86731 in /start.py

2019-07-22 12:25:35 UTC

/bin/sh -c #(nop) COPY dir:a0d00ea089162b6a76901cfbe25cc9375d2f83d12bd97f1e3f49d481a8381435 in /conf

2019-07-22 12:25:35 UTC

/bin/sh -c #(nop) VOLUME [/data]

2019-07-22 12:25:35 UTC

/bin/sh -c #(nop) EXPOSE 8008/tcp 8009/tcp 8448/tcp

2019-07-22 12:25:35 UTC

/bin/sh -c #(nop) ENTRYPOINT ["/start.py"]

2019-07-22 12:25:35 UTC

/bin/sh -c #(nop) LABEL gitsha1=8b0d5b171e1af3eb9a8a380af1be0f9c71d22d17

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