Namespace
vvnocode
Image / Tag
vpspeek:latest
Content Digest
sha256:e43aec01f363e0e565958d8999b1fdc2f522abfe8392d52387c1a8b7ab844252
Details
Created

2024-09-25 12:35:58 UTC

Size

22.4 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2024-09-25T12:35:38.956Z
  • org.opencontainers.image.description
    VPS网速监测工具:自动定时测速与手动测速,支持对测速结果的排序和查询,帮助您轻松监控VPS网络性能。VPS Network Speed Monitoring Tool: Automates scheduled speed tests and supports manual tests, with sorting and querying of results to easily monitor VPS network performance.
  • org.opencontainers.image.licenses
    MIT
  • org.opencontainers.image.revision
    8d477071d197cc3e340dde6812b72690c84e53fc
  • org.opencontainers.image.source
    https://github.com/vvnocode/vpspeek
  • org.opencontainers.image.title
    vpspeek
  • org.opencontainers.image.url
    https://github.com/vvnocode/vpspeek
  • org.opencontainers.image.version
    0.3.2

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_VERSION

3.9.20

TZ

Asia/Shanghai


Layers

[#000] sha256:43c4264eed91be63b206e17d93e75256a6097070ce643c5e8f0379998b44f170 - 15.41% (3.46 MB)

[#001] sha256:7944f42514f614aa154e647aa777970d57d0715a3b68fe56bf7888ef91756583 - 1.94% (444 KB)

[#002] sha256:136b49855e1e8023247a399c803055a476aed5ca359e8dceb4a4f7cac58fffc9 - 61.49% (13.8 MB)

[#003] sha256:a011676a71080b8205ac76f97043aa00ac0071dfed4d95a477b28083de1c180e - 0.0% (250 Bytes)

[#004] sha256:2efb5a893c5be375829120fb455dee5cc7dec939fa8712d959a742ca7196e517 - 0.0% (93 Bytes)

[#005] sha256:f03cbcc19d294552aafa57b5305b3d6a4bd1809bbdeaf5219590757d35283af6 - 9.69% (2.17 MB)

[#006] sha256:88a63f9c3692e65d3a41e820cd1287288944482996f323abbabf2ca91488d218 - 11.44% (2.57 MB)

[#007] sha256:97761352de250d0b30399eb45590da8b3def5f8cf26571bec1ad519ff85b5fd4 - 0.01% (2.15 KB)

[#008] sha256:45b7455e635297724cf85d5b598a508246fbac1263075e41cffa9ddf952ff3bc - 0.01% (3.18 KB)

[#009] sha256:4132633683d8de607f993fe8b981d84f85821e0be20544d516bf7b02d7b8fc2c - 0.0% (589 Bytes)


History
2024-09-06 22:20:07 UTC

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

2024-09-06 22:20:07 UTC

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

2024-09-09 17:16:05 UTC (buildkit.dockerfile.v0)

ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2024-09-09 17:16:05 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2024-09-09 17:16:05 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; apk add --no-cache ca-certificates tzdata ; # buildkit

2024-09-09 17:16:05 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=E3FF2839C048B25C084DEBE9B26995E310250568

2024-09-09 17:16:05 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.9.20

2024-09-09 17:16:05 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; apk add --no-cache --virtual .build-deps gnupg tar xz bluez-dev bzip2-dev 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 ; 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; 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 --with-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000"; LDFLAGS="${LDFLAGS:--Wl},--strip-all"; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:-}" "PROFILE_TASK=${PROFILE_TASK:-}" ; rm python; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:--Wl},-rpath='\$\$ORIGIN/../lib'" "PROFILE_TASK=${PROFILE_TASK:-}" 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 '{}' + ; 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-network --virtual .python-rundeps ; apk del --no-network .build-deps; export PYTHONDONTWRITEBYTECODE=1; python3 --version; pip3 install --disable-pip-version-check --no-cache-dir --no-compile 'setuptools==58.1.0' wheel ; pip3 --version # buildkit

2024-09-09 17:16:05 UTC (buildkit.dockerfile.v0)

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

2024-09-09 17:16:05 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2024-09-25 12:35:45 UTC (buildkit.dockerfile.v0)

ENV TZ=Asia/Shanghai

2024-09-25 12:35:45 UTC (buildkit.dockerfile.v0)

WORKDIR /app

2024-09-25 12:35:51 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c apk --no-cache add curl # buildkit

2024-09-25 12:35:58 UTC (buildkit.dockerfile.v0)

COPY /install /usr/local/lib/python3.9/site-packages # buildkit

2024-09-25 12:35:58 UTC (buildkit.dockerfile.v0)

COPY templates ./templates # buildkit

2024-09-25 12:35:58 UTC (buildkit.dockerfile.v0)

COPY app.py . # buildkit

2024-09-25 12:35:58 UTC (buildkit.dockerfile.v0)

COPY conf.yaml.default . # buildkit

2024-09-25 12:35:58 UTC (buildkit.dockerfile.v0)

CMD ["python" "app.py"]

Details
Created

2024-09-25 12:39:09 UTC

Size

22.9 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2024-09-25T12:35:38.956Z
  • org.opencontainers.image.description
    VPS网速监测工具:自动定时测速与手动测速,支持对测速结果的排序和查询,帮助您轻松监控VPS网络性能。VPS Network Speed Monitoring Tool: Automates scheduled speed tests and supports manual tests, with sorting and querying of results to easily monitor VPS network performance.
  • org.opencontainers.image.licenses
    MIT
  • org.opencontainers.image.revision
    8d477071d197cc3e340dde6812b72690c84e53fc
  • org.opencontainers.image.source
    https://github.com/vvnocode/vpspeek
  • org.opencontainers.image.title
    vpspeek
  • org.opencontainers.image.url
    https://github.com/vvnocode/vpspeek
  • org.opencontainers.image.version
    0.3.2

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_VERSION

3.9.20

TZ

Asia/Shanghai


Layers

[#000] sha256:cf04c63912e16506c4413937c7f4579018e4bb25c272d989789cfba77b12f951 - 16.99% (3.9 MB)

[#001] sha256:f0d3d23155cbbb3aca6949baedd1935e7ad9f792b943689e594e2efc8a828dec - 1.9% (447 KB)

[#002] sha256:37ad5c42560ae1761b1178a5ce20b715dee857483103ce2bbc7c439ccb98a1f3 - 60.45% (13.9 MB)

[#003] sha256:226978d743a230a8b709aba876cb66ee934473064f94227c93e08e76c05b6cfd - 0.0% (248 Bytes)

[#004] sha256:2efb5a893c5be375829120fb455dee5cc7dec939fa8712d959a742ca7196e517 - 0.0% (93 Bytes)

[#005] sha256:cfd361aff9a68710d6bb71680474c89056eea603356ba2f8c8408e4e461f1913 - 9.53% (2.19 MB)

[#006] sha256:bcec11a75fb9e4bd69ac3b2fb5a5bfcd6b45975a2c5612eaca59bcc3858741d2 - 11.1% (2.55 MB)

[#007] sha256:80a37238dcb474fc7117dfc5de9ed5c2608a5b500e750b4184f213d0df1b24ad - 0.01% (2.14 KB)

[#008] sha256:ec8b10f3f0c73682f25a0f555106ec20cb449ac886ba8bf9da28e97b520c0fbf - 0.01% (3.18 KB)

[#009] sha256:cfd8b69a1d72bba2f4753b077a566049f7601d715ed4d9cf6e687f9a0307b990 - 0.0% (589 Bytes)


History
2024-09-06 22:44:10 UTC

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

2024-09-06 22:44:11 UTC

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

2024-09-09 17:16:05 UTC (buildkit.dockerfile.v0)

ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2024-09-09 17:16:05 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2024-09-09 17:16:05 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; apk add --no-cache ca-certificates tzdata ; # buildkit

2024-09-09 17:16:05 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=E3FF2839C048B25C084DEBE9B26995E310250568

2024-09-09 17:16:05 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.9.20

2024-09-09 17:16:05 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; apk add --no-cache --virtual .build-deps gnupg tar xz bluez-dev bzip2-dev 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 ; 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; 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 --with-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000"; LDFLAGS="${LDFLAGS:--Wl},--strip-all"; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:-}" "PROFILE_TASK=${PROFILE_TASK:-}" ; rm python; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:--Wl},-rpath='\$\$ORIGIN/../lib'" "PROFILE_TASK=${PROFILE_TASK:-}" 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 '{}' + ; 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-network --virtual .python-rundeps ; apk del --no-network .build-deps; export PYTHONDONTWRITEBYTECODE=1; python3 --version; pip3 install --disable-pip-version-check --no-cache-dir --no-compile 'setuptools==58.1.0' wheel ; pip3 --version # buildkit

2024-09-09 17:16:05 UTC (buildkit.dockerfile.v0)

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

2024-09-09 17:16:05 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2024-09-25 12:35:45 UTC (buildkit.dockerfile.v0)

ENV TZ=Asia/Shanghai

2024-09-25 12:35:45 UTC (buildkit.dockerfile.v0)

WORKDIR /app

2024-09-25 12:35:53 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c apk --no-cache add curl # buildkit

2024-09-25 12:39:09 UTC (buildkit.dockerfile.v0)

COPY /install /usr/local/lib/python3.9/site-packages # buildkit

2024-09-25 12:39:09 UTC (buildkit.dockerfile.v0)

COPY templates ./templates # buildkit

2024-09-25 12:39:09 UTC (buildkit.dockerfile.v0)

COPY app.py . # buildkit

2024-09-25 12:39:09 UTC (buildkit.dockerfile.v0)

COPY conf.yaml.default . # buildkit

2024-09-25 12:39:09 UTC (buildkit.dockerfile.v0)

CMD ["python" "app.py"]

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