Namespace
matrixdotorg
Image / Tag
synapse:v0.99.3.2-py3
Content Digest
sha256:29883c7b8d23a83fb240f201eee6f1ad374e7a292a7398019e244bae0a1bf072
Details
Created

2019-05-03 18:13:41 UTC

Size

59.7 MB

Content Digest
Labels
  • gitsha1
    fa21455e08d4115cd14f6c4ca34a1b432d924b4f

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

PYTHON_VERSION

3.6.8


Layers

[#000] sha256:c87736221ed0bcaa60b8e92a19bec2284899ef89226f2a07968677cf59e637a4 - 3.52% (2.1 MB)

[#001] sha256:c3f51b0d0765f7359fcc1b8d67887b1461c51dfb04b68ad54676a592af48cfdc - 0.49% (302 KB)

[#002] sha256:b5a0acc6b737454a58b8b0cfb1eb6169a16c460f808e7fdcc3cb2cf5e5c89282 - 37.02% (22.1 MB)

[#003] sha256:14428c09e432b630c56feb6f9ad00c222ff32160b3905f7e492b9be1cfb5f457 - 0.0% (230 Bytes)

[#004] sha256:38e75056421b76cdc6f29e2b583a1f0327de551cebcfa9a960dd427d5d6307b9 - 2.91% (1.74 MB)

[#005] sha256:3d9cbda51c532af5eed38f482e28cec2ccafd2d232d5ce6889c7638fae84bc87 - 4.73% (2.82 MB)

[#006] sha256:21e1c24f93fca2e5c1ec0f17e4793964d7880cffdd28a935326b6ab5daa80abb - 51.32% (30.7 MB)

[#007] sha256:fa1e91a1c7e6f966cdd237ad3b8684428788ffbcbeaa72b8bf34bf9aac6ec8c1 - 0.0% (1.19 KB)

[#008] sha256:49f55bb40d4fbc1292e675980ca3984f2003acd3d6d7e50e718aa4153ae6b021 - 0.0% (2.43 KB)


History
2019-03-07 22:19:46 UTC

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

2019-03-07 22:19:46 UTC

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

2019-03-07 22:43:33 UTC

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

2019-03-07 22:43:33 UTC

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

2019-03-07 22:43:34 UTC

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

2019-03-07 22:43:35 UTC

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

2019-03-07 22:51:30 UTC

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

2019-03-07 22:53:31 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 libressl-dev pax-utils readline-dev sqlite-dev tcl-dev tk tk-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-shared --with-system-expat --with-system-ffi --without-ensurepip && make -j "$(nproc)" EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000" && 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-03-07 22:53:32 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-04-25 00:35:18 UTC

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

2019-04-25 00:35:25 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-04-25 00:35:25 UTC

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

2019-05-03 18:13:36 UTC

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

2019-05-03 18:13:40 UTC

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

2019-05-03 18:13:41 UTC

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

2019-05-03 18:13:41 UTC

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

2019-05-03 18:13:41 UTC

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

2019-05-03 18:13:41 UTC

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

2019-05-03 18:13:41 UTC

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

2019-05-03 18:13:41 UTC

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

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