Docker Registry UI

Event Log

Image Details

Summary
Image URLdocker.wisetronic.com/watchdog:1.1
Digestsha256:145b9911e14220d5a42b89b498aaac31028a241a05ff5ecb4d31e591d4176511
Created On0001-01-01 00:00:00 UTC
Image Size50.4 MB
Layer Count7
Manifest Formats Manifest v2 schema 1 | Manifest v2 schema 2 | Manifest List v2 schema 2

Blobs

Layer # Digest Size
7 sha256:380ebb5ce8c144e7e86eb051913ead032b105b60fb5e5165685ca5051f595fec 29.4 MB
6 sha256:5b09819094bb89d5b2416ff2fb03f68666a5372c358cfd22f2b62d7f6660d906 1.2 MB
5 sha256:3e731abb5c1dd05aef62585d392d31ad26089dc4c031730e5ab0225aef80b3f2 13.7 MB
4 sha256:0b2bf04f68e9f306a8a83f57c6ced322a23968bf3d5acebc07e055c090240826 250 B
3 sha256:d17b2f873a82da12b62e945b058139260acbae7561c87ada8653d1cb6ad5fdfd 93 B
2 sha256:165a3721a9f3bb9acef55cd13251e5fc93fd0b78915b8498fe9a4595e5506d17 865 B
1 sha256:31a14ce8194a1be2bf30008113a7ea2b8bb3a9c1ed1d7d528f7113a50b802639 6.2 MB

Image History

Layer #14
architecture amd64
config
ArgsEscapedtrue
Cmd[python watchdog.py]
Env[PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin LANG=C.UTF-8 GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D PYTHON_VERSION=3.11.14 PYTHON_SHA256=8d3ed8ec5c88c1c95f5e558612a725450d2452813ddad5e58fdb1a53b1209b78]
WorkingDir/app
created 0001-01-01 00:00:00 UTC
id 97466937dae1524d7e3f14c4d36814811d3b6bc142abaa7fa996e1dfb14da796
os linux
parent c711500efe00b126ddcfb0ea64ac6aca47461199919aa2f05c3176e884dc9592
throwaway true
Layer #13
comment buildkit.dockerfile.v0
container_config
Cmd[RUN /bin/sh -c pip install docker # buildkit]
created 0001-01-01 00:00:00 UTC
id c711500efe00b126ddcfb0ea64ac6aca47461199919aa2f05c3176e884dc9592
parent a90267fbb3d39c80809222561d532529bc8f3d8e580b730ff9736ab9d2e1ec36
Layer #12
comment buildkit.dockerfile.v0
container_config
Cmd[COPY watchdog.py . # buildkit]
created 0001-01-01 00:00:00 UTC
id a90267fbb3d39c80809222561d532529bc8f3d8e580b730ff9736ab9d2e1ec36
parent 377ed6e3bc68320291d5e330eb78df041cefaf60e819353b7874c20ea883acd4
Layer #11
comment buildkit.dockerfile.v0
container_config
Cmd[WORKDIR /app]
created 0001-01-01 00:00:00 UTC
id 377ed6e3bc68320291d5e330eb78df041cefaf60e819353b7874c20ea883acd4
parent c5358ed6412f2095aaf7ae031e68b1236944b493e8a428d9e73b0e29ebbc227d
Layer #10
comment buildkit.dockerfile.v0
container_config
Cmd[CMD ["python3"]]
created 2026-01-13 03:14:21 UTC
id c5358ed6412f2095aaf7ae031e68b1236944b493e8a428d9e73b0e29ebbc227d
parent 921f0b2f5e8eb33e870fb80dbec5e414365937609cc057857c124f7c5b47d171
throwaway true
Layer #9
comment buildkit.dockerfile.v0
container_config
Cmd[RUN /bin/sh -c set -eux; for src in idle3 pip3 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 # buildkit]
created 2026-01-13 03:14:21 UTC
id 921f0b2f5e8eb33e870fb80dbec5e414365937609cc057857c124f7c5b47d171
parent 479e4a383c23e7b098ab3944f1e32bf54e1987d43e4029f7b85976500da79df8
Layer #8
comment buildkit.dockerfile.v0
container_config
Cmd[RUN /bin/sh -c set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends dpkg-dev gcc gnupg libbluetooth-dev libbz2-dev libc6-dev libdb-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"; echo "$PYTHON_SHA256 *python.tar.xz" | sha256sum -c -; 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; 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 $(test "${gnuArch%%-*}" != 'riscv64' && echo '--with-lto') --with-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="$(dpkg-buildflags --get CFLAGS)"; LDFLAGS="$(dpkg-buildflags --get LDFLAGS)"; LDFLAGS="${LDFLAGS:--Wl},--strip-all"; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:-}" ; rm python; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:--Wl},-rpath='\$\$ORIGIN/../lib'" python ; 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 '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); printf "*%s\n", so }' | sort -u | xargs -rt dpkg-query --search | awk 'sub(":$", "", $1) { print $1 }' | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; apt-get dist-clean; export PYTHONDONTWRITEBYTECODE=1; python3 --version; pip3 install --disable-pip-version-check --no-cache-dir --no-compile 'setuptools==79.0.1' 'wheel<0.46' ; pip3 --version # buildkit]
created 2026-01-13 03:14:21 UTC
id 479e4a383c23e7b098ab3944f1e32bf54e1987d43e4029f7b85976500da79df8
parent c84a427e60df780d6e3a3d1ad3d7b99d90c80101a7c5178f14c4452fa7120290
Layer #7
comment buildkit.dockerfile.v0
container_config
Cmd[ENV PYTHON_SHA256=8d3ed8ec5c88c1c95f5e558612a725450d2452813ddad5e58fdb1a53b1209b78]
created 2026-01-13 03:06:57 UTC
id c84a427e60df780d6e3a3d1ad3d7b99d90c80101a7c5178f14c4452fa7120290
parent ee3e7070b6ffada03bab9a24bd43ff0fb8a937e04ee8042354e8b52f3c436574
throwaway true
Layer #6
comment buildkit.dockerfile.v0
container_config
Cmd[ENV PYTHON_VERSION=3.11.14]
created 2026-01-13 03:06:57 UTC
id ee3e7070b6ffada03bab9a24bd43ff0fb8a937e04ee8042354e8b52f3c436574
parent 1d8b9c4a690862080147fc9e9a86c2dc953d860cb51bfd1350961da0a64ef73c
throwaway true
Layer #5
comment buildkit.dockerfile.v0
container_config
Cmd[ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D]
created 2026-01-13 03:06:57 UTC
id 1d8b9c4a690862080147fc9e9a86c2dc953d860cb51bfd1350961da0a64ef73c
parent 120336a8ff999ddbcbfa91aed23d077da8201950b95451f6d11b45b5f6a78d2d
throwaway true
Layer #4
comment buildkit.dockerfile.v0
container_config
Cmd[RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates netbase tzdata ; apt-get dist-clean # buildkit]
created 2026-01-13 03:06:57 UTC
id 120336a8ff999ddbcbfa91aed23d077da8201950b95451f6d11b45b5f6a78d2d
parent 7a8bd2403aecd124c86a46154958c0408e66018340eec681f9779bd21306d1ac
Layer #3
comment buildkit.dockerfile.v0
container_config
Cmd[ENV LANG=C.UTF-8]
created 2026-01-13 03:06:57 UTC
id 7a8bd2403aecd124c86a46154958c0408e66018340eec681f9779bd21306d1ac
parent 040392f34ddaaf3fea1c1262cf714eb7b2a9fe6c554091070ae2fc9973945783
throwaway true
Layer #2
comment buildkit.dockerfile.v0
container_config
Cmd[ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin]
created 2026-01-13 03:06:57 UTC
id 040392f34ddaaf3fea1c1262cf714eb7b2a9fe6c554091070ae2fc9973945783
parent 8c43fb4ede5c2bb83ecbf00caacae99ba2a62796d7bd0a0405fc5b75f7332899
throwaway true
Layer #1
comment debuerreotype 0.17
container_config
Cmd[# debian.sh --arch 'amd64' out/ 'trixie' '@1768176000']
created 2026-01-12 00:00:00 UTC
id 8c43fb4ede5c2bb83ecbf00caacae99ba2a62796d7bd0a0405fc5b75f7332899
Docker Registry UI v0.9.7 | Quiq Inc.