2024-09-10 12:04:25 UTC
192 MB
E3FF2839C048B25C084DEBE9B26995E310250568
LANGC.UTF-8
PATH/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
POETRY_HOME/usr/local
PYTHON_GET_PIP_SHA256bc37786ec99618416cc0a0ca32833da447f4d91ab51d2c138dd15b7af21e8e9a
PYTHON_GET_PIP_URLhttps://github.com/pypa/get-pip/raw/def4aec84b261b939137dd1c69eff0aabb4a7bf4/public/get-pip.py
PYTHON_PIP_VERSION23.0.1
PYTHON_SETUPTOOLS_VERSION57.5.0
PYTHON_VERSION3.8.20
[#000] sha256:a2318d6c47ec9cac5acc500c47c79602bcf953cec711a18bc898911a0984365b - 14.45% (27.8 MB)
[#001] sha256:f5bf11ce6cc6b45e02243c6397891b5b81f54afdeea0435abc5fcb94c3f15549 - 1.74% (3.35 MB)
[#002] sha256:e59b1266b88a981b595f4301ca59a54e64093b57b123fba3e2ad0914bc23531a - 5.79% (11.1 MB)
[#003] sha256:267fb18dff829ff47d4a09e959daeb3c0afc7184da61a03318ebf34ded07bb48 - 0.0% (233 Bytes)
[#004] sha256:707d2d4a2946d5e28ff6784f898c1a707209a16ca07eca34cd783f4b7055c52c - 1.38% (2.65 MB)
[#005] sha256:3fcd359251918d2522403c54b911fd962d4bc72fa0d2b998cdf9e512211116cb - 0.0% (3.23 KB)
[#006] sha256:3e50501b958d9024b93305e53836cd53969b26e9ea8d9c1da06957cc8dcd617d - 2.39% (4.59 MB)
[#007] sha256:4a3f930ca81c00fb6333f1e482ec6eb01bee4a4a90a3aa133679ec1cbec439a6 - 23.92% (46 MB)
[#008] sha256:73bc86824e6ca6476cfcb06c168573db89618978925d5c970cebb85c8da6d18b - 0.0% (219 Bytes)
[#009] sha256:3831adf8df4efc72d283edf3ffa5439585120721fb34dd5fe3c731f7b87a5b47 - 50.33% (96.8 MB)
/bin/sh -c #(nop) ADD file:d13afefcc2b0b02b598a3ac2598fe2187db41de1e17820e5b600a955b1429d59 in /
2024-09-04 22:30:47 UTC/bin/sh -c #(nop) CMD ["bash"]
2024-09-07 11:22:36 UTC (buildkit.dockerfile.v0)ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2024-09-07 11:22:36 UTC (buildkit.dockerfile.v0)ENV LANG=C.UTF-8
2024-09-07 11:22:36 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
2024-09-07 11:22:36 UTC (buildkit.dockerfile.v0)ENV GPG_KEY=E3FF2839C048B25C084DEBE9B26995E310250568
2024-09-07 11:22:36 UTC (buildkit.dockerfile.v0)ENV PYTHON_VERSION=3.8.20
2024-09-07 11:22:36 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 libexpat1-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"; 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 --without-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:-}" "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' \) \) -o \( -type f -a -name 'wininst-*.exe' \) \) -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/*; python3 --version # buildkit
2024-09-07 11:22:36 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; for src in idle3 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-07 11:22:36 UTC (buildkit.dockerfile.v0)ENV PYTHON_PIP_VERSION=23.0.1
2024-09-07 11:22:36 UTC (buildkit.dockerfile.v0)ENV PYTHON_SETUPTOOLS_VERSION=57.5.0
2024-09-07 11:22:36 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/def4aec84b261b939137dd1c69eff0aabb4a7bf4/public/get-pip.py
2024-09-07 11:22:36 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_SHA256=bc37786ec99618416cc0a0ca32833da447f4d91ab51d2c138dd15b7af21e8e9a
2024-09-07 11:22:36 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends wget; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum -c -; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; export PYTHONDONTWRITEBYTECODE=1; python get-pip.py --disable-pip-version-check --no-cache-dir --no-compile "pip==$PYTHON_PIP_VERSION" "setuptools==$PYTHON_SETUPTOOLS_VERSION" wheel ; rm -f get-pip.py; pip --version # buildkit
2024-09-07 11:22:36 UTC (buildkit.dockerfile.v0)CMD ["python3"]
2024-09-10 12:03:48 UTC (buildkit.dockerfile.v0)LABEL org.opencontainers.image.authors=Nikolai R Kristiansen <nikolaik@gmail.com>
2024-09-10 12:03:48 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c groupadd --gid 1000 pn && useradd --uid 1000 --gid pn --shell /bin/bash --create-home pn # buildkit
2024-09-10 12:03:48 UTC (buildkit.dockerfile.v0)ENV POETRY_HOME=/usr/local
2024-09-10 12:03:53 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c apt-get update && apt-get install curl gnupg2 xz-utils -yqq && apt-get upgrade -yqq && rm -rf /var/lib/apt/lists/* # buildkit
2024-09-10 12:04:08 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c NODE_VERSION="v20.17.0" ARCH= && dpkgArch="$(dpkg --print-architecture)" && case "${dpkgArch##*-}" in amd64) ARCH='x64';; arm64) ARCH='arm64';; *) echo "unsupported architecture"; exit 1 ;; esac && for key in $(curl -sL https://raw.githubusercontent.com/nodejs/docker-node/HEAD/keys/node.keys); do gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$key" || gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key" ; done && curl -fsSLO --compressed "https://nodejs.org/dist/$NODE_VERSION/node-$NODE_VERSION-linux-$ARCH.tar.xz" && curl -fsSLO --compressed "https://nodejs.org/dist/$NODE_VERSION/SHASUMS256.txt.asc" && gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc && grep " node-$NODE_VERSION-linux-$ARCH.tar.xz\$" SHASUMS256.txt | sha256sum -c - && tar -xJf "node-$NODE_VERSION-linux-$ARCH.tar.xz" -C /usr/local --strip-components=1 --no-same-owner && rm "node-$NODE_VERSION-linux-$ARCH.tar.xz" SHASUMS256.txt.asc SHASUMS256.txt && ln -s /usr/local/bin/node /usr/local/bin/nodejs # buildkit
2024-09-10 12:04:09 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c corepack enable yarn # buildkit
2024-09-10 12:04:25 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c pip install -U pip pipenv uv && curl -fsSL --compressed https://install.python-poetry.org | python - # buildkit
2024-09-10 12:08:10 UTC
187 MB
E3FF2839C048B25C084DEBE9B26995E310250568
LANGC.UTF-8
PATH/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
POETRY_HOME/usr/local
PYTHON_GET_PIP_SHA256bc37786ec99618416cc0a0ca32833da447f4d91ab51d2c138dd15b7af21e8e9a
PYTHON_GET_PIP_URLhttps://github.com/pypa/get-pip/raw/def4aec84b261b939137dd1c69eff0aabb4a7bf4/public/get-pip.py
PYTHON_PIP_VERSION23.0.1
PYTHON_SETUPTOOLS_VERSION57.5.0
PYTHON_VERSION3.8.20
[#000] sha256:92c3b3500be621c72c7ac6432a9d8f731f145f4a1535361ffd3a304e55f7ccda - 14.88% (27.8 MB)
[#001] sha256:89790d4ca55c29720fc29c489ba4403f3bb6baa1a6d8b5d0e96c3d40521408c0 - 1.7% (3.18 MB)
[#002] sha256:4e8e2e6ab1484897e2e12198183387a70abb49c10fccad2cfa2997ccbc27d722 - 5.96% (11.1 MB)
[#003] sha256:2cb812e341036deed687c1a02405d0051c5a6b2891bd4a5f4f2d28a0ee4a79a7 - 0.0% (233 Bytes)
[#004] sha256:618f8535914bd0c55ffe156e4cf081d2cfad0f036c2afbc5b8a3b8b55deb5b8e - 1.42% (2.65 MB)
[#005] sha256:88ce83eb6a53428b5178bde3844c2575d93551f2d81b31de9913d73615fe61a5 - 0.0% (3.23 KB)
[#006] sha256:2911662617bfd95dfced826b2d19a0a76e638f4f1ba920452cc090a096759079 - 2.45% (4.58 MB)
[#007] sha256:4b093782d48c0e50c68efa046c545702ae6428eba242a99f56e6d715ac42d544 - 24.6% (45.9 MB)
[#008] sha256:62445e6deb062f1e6920fe8a81fa03b8c81f12a1615413e424cab7d89fd99993 - 0.0% (218 Bytes)
[#009] sha256:915f73c6fbc347df13c8893c97e4587a058b62dd45e5938be273e7427dcceff5 - 48.99% (91.5 MB)
/bin/sh -c #(nop) ADD file:06a1877f1e100122a40ed52ce771bfa7e2ab3d28323780f58f1e5b57c1e576f9 in /
2024-09-04 21:39:53 UTC/bin/sh -c #(nop) CMD ["bash"]
2024-09-07 11:22:36 UTC (buildkit.dockerfile.v0)ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2024-09-07 11:22:36 UTC (buildkit.dockerfile.v0)ENV LANG=C.UTF-8
2024-09-07 11:22:36 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
2024-09-07 11:22:36 UTC (buildkit.dockerfile.v0)ENV GPG_KEY=E3FF2839C048B25C084DEBE9B26995E310250568
2024-09-07 11:22:36 UTC (buildkit.dockerfile.v0)ENV PYTHON_VERSION=3.8.20
2024-09-07 11:22:36 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 libexpat1-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"; 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 --without-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:-}" "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' \) \) -o \( -type f -a -name 'wininst-*.exe' \) \) -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/*; python3 --version # buildkit
2024-09-07 11:22:36 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; for src in idle3 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-07 11:22:36 UTC (buildkit.dockerfile.v0)ENV PYTHON_PIP_VERSION=23.0.1
2024-09-07 11:22:36 UTC (buildkit.dockerfile.v0)ENV PYTHON_SETUPTOOLS_VERSION=57.5.0
2024-09-07 11:22:36 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/def4aec84b261b939137dd1c69eff0aabb4a7bf4/public/get-pip.py
2024-09-07 11:22:36 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_SHA256=bc37786ec99618416cc0a0ca32833da447f4d91ab51d2c138dd15b7af21e8e9a
2024-09-07 11:22:36 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends wget; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum -c -; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; export PYTHONDONTWRITEBYTECODE=1; python get-pip.py --disable-pip-version-check --no-cache-dir --no-compile "pip==$PYTHON_PIP_VERSION" "setuptools==$PYTHON_SETUPTOOLS_VERSION" wheel ; rm -f get-pip.py; pip --version # buildkit
2024-09-07 11:22:36 UTC (buildkit.dockerfile.v0)CMD ["python3"]
2024-09-10 12:04:45 UTC (buildkit.dockerfile.v0)LABEL org.opencontainers.image.authors=Nikolai R Kristiansen <nikolaik@gmail.com>
2024-09-10 12:04:45 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c groupadd --gid 1000 pn && useradd --uid 1000 --gid pn --shell /bin/bash --create-home pn # buildkit
2024-09-10 12:04:45 UTC (buildkit.dockerfile.v0)ENV POETRY_HOME=/usr/local
2024-09-10 12:05:22 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c apt-get update && apt-get install curl gnupg2 xz-utils -yqq && apt-get upgrade -yqq && rm -rf /var/lib/apt/lists/* # buildkit
2024-09-10 12:05:49 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c NODE_VERSION="v20.17.0" ARCH= && dpkgArch="$(dpkg --print-architecture)" && case "${dpkgArch##*-}" in amd64) ARCH='x64';; arm64) ARCH='arm64';; *) echo "unsupported architecture"; exit 1 ;; esac && for key in $(curl -sL https://raw.githubusercontent.com/nodejs/docker-node/HEAD/keys/node.keys); do gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$key" || gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key" ; done && curl -fsSLO --compressed "https://nodejs.org/dist/$NODE_VERSION/node-$NODE_VERSION-linux-$ARCH.tar.xz" && curl -fsSLO --compressed "https://nodejs.org/dist/$NODE_VERSION/SHASUMS256.txt.asc" && gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc && grep " node-$NODE_VERSION-linux-$ARCH.tar.xz\$" SHASUMS256.txt | sha256sum -c - && tar -xJf "node-$NODE_VERSION-linux-$ARCH.tar.xz" -C /usr/local --strip-components=1 --no-same-owner && rm "node-$NODE_VERSION-linux-$ARCH.tar.xz" SHASUMS256.txt.asc SHASUMS256.txt && ln -s /usr/local/bin/node /usr/local/bin/nodejs # buildkit
2024-09-10 12:05:50 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c corepack enable yarn # buildkit
2024-09-10 12:08:10 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c pip install -U pip pipenv uv && curl -fsSL --compressed https://install.python-poetry.org | python - # buildkit
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.