Namespace
lilixxs666
Image / Tag
gsuid-core:v1.0.0
Content Digest
sha256:e539939659abee85176c676af48c792f91eb82cfe54b37b685655666dc7608d4
Details
Created

2025-02-22 12:33:22 UTC

Size

256 MB

Content Digest
Environment
GPG_KEY

7169605F62C751356D054A26A821E680E5FA6305

LANG

C.UTF-8

PATH

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

PYTHON_SHA256

7220835d9f90b37c006e9842a8dff4580aaca4318674f947302b8d28f3f81112

PYTHON_VERSION

3.12.9


Layers

[#000] sha256:cf799a8da63a7bb7f377162d10ed737dd26b0e1174c8ac5d89a5da6c15dc7c04 - 11.29% (28.9 MB)

[#001] sha256:ad669615d2057831424e66bdeeb5027262e9ed00b2b198adf98428b152cd6a7e - 0.33% (851 KB)

[#002] sha256:287d35cca2f2adb13adadc12958b40ba65b980fb1ad9611c37a6fc480bbf79f9 - 4.83% (12.3 MB)

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

[#004] sha256:7966160d7eaf8fa2653355542f3a0d2d345508d10534d565d14695060c993427 - 0.0% (100 Bytes)

[#005] sha256:98e18768668a74d0e98efa3dc121d8f30f98c74551db2dc691628fa33248c925 - 30.57% (78.1 MB)

[#006] sha256:6d897d6c3dd775b2d5d5cb25e3ab91d0de742eb556f81a6107e5b2b9d9fb06c1 - 27.94% (71.4 MB)

[#007] sha256:b507f5648d1720ca8968cbbcedb09671fe0e2979816455c692029d7e13a2541e - 25.05% (64 MB)


History
2025-02-03 00:00:00 UTC (debuerreotype 0.15)

# debian.sh --arch 'amd64' out/ 'bullseye' '@1738540800'

2025-02-04 21:54:55 UTC (buildkit.dockerfile.v0)

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

2025-02-04 21:54:55 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2025-02-04 21:54:55 UTC (buildkit.dockerfile.v0)

RUN /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/* # buildkit

2025-02-04 21:54:55 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305

2025-02-04 21:54:55 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.12.9

2025-02-04 21:54:55 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SHA256=7220835d9f90b37c006e9842a8dff4580aaca4318674f947302b8d28f3f81112

2025-02-04 21:54:55 UTC (buildkit.dockerfile.v0)

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 --with-lto --with-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="$(dpkg-buildflags --get CFLAGS)"; LDFLAGS="$(dpkg-buildflags --get LDFLAGS)"; LDFLAGS="${LDFLAGS:--Wl},--strip-all"; arch="$(dpkg --print-architecture)"; arch="${arch##*-}"; case "$arch" in amd64|arm64) EXTRA_CFLAGS="${EXTRA_CFLAGS:-} -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer"; ;; i386) ;; *) EXTRA_CFLAGS="${EXTRA_CFLAGS:-} -fno-omit-frame-pointer"; ;; esac; 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 -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/*; export PYTHONDONTWRITEBYTECODE=1; python3 --version; pip3 --version # buildkit

2025-02-04 21:54:55 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

2025-02-04 21:54:55 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2025-02-22 12:33:02 UTC (buildkit.dockerfile.v0)

WORKDIR /gsuid_core

2025-02-22 12:33:11 UTC (buildkit.dockerfile.v0)

EXPOSE map[8765/tcp:{}]

2025-02-22 12:33:11 UTC (buildkit.dockerfile.v0)

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

2025-02-22 12:33:11 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c echo build start ---------------------------- && apt-get update -y && apt install curl git -y && apt-get autoremove && apt-get clean && pip install --no-cache-dir --upgrade pip && pip install uv # buildkit

2025-02-22 12:33:11 UTC (buildkit.dockerfile.v0)

ADD ./ /gsuid_core/ # buildkit

2025-02-22 12:33:22 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c uv sync && chmod +x /gsuid_core/docker-entrypoint.sh && echo build end ---------------------------- # buildkit

2025-02-22 12:33:22 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["/gsuid_core/docker-entrypoint.sh"]

2025-02-22 12:33:22 UTC (buildkit.dockerfile.v0)

CMD ["uv" "run" "core"]

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