Namespace
lanol
Image / Tag
filecodebox:latest
Content Digest
sha256:693175a67ba2a4cc862756e3d7de356db641edc6209e45299a56ef3f0d84ca31
Details
Created

2025-02-22 15:48:54 UTC

Size

90.9 MB

Content Digest
Labels
  • author
    Lan
  • email
    xzu@live.com

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_GET_PIP_SHA256

6665659241292b2147b58922b9ffe11dda66b39d52d8a6f3aa310bc1d60ea6f7

PYTHON_GET_PIP_URL

https://github.com/pypa/get-pip/raw/a1675ab6c2bd898ed82b1f58c486097f763c74a9/public/get-pip.py

PYTHON_PIP_VERSION

21.1.3

PYTHON_VERSION

3.9.5


Layers

[#000] sha256:b4d181a07f8025e00e0cb28f1cc14613da2ce26450b80c54aea537fa93cf3bda - 28.47% (25.9 MB)

[#001] sha256:a1111a8f2ec3f3a8ee44a123047349a70f87d1cfebb9e48b06520d0eed436a71 - 2.9% (2.64 MB)

[#002] sha256:445d04774519ca200f5c48fd028beaafb49ca763dd58767f1ae7e3933306394c - 11.47% (10.4 MB)

[#003] sha256:24f3f85d41f368fc2dcd569b181ef6cd4c2bee419a32853be2f8c8964cee34af - 0.0% (235 Bytes)

[#004] sha256:d299f7fb612d59c3d87fcb17028a25c02e94722ef6235e60537a12d0e312abfc - 2.76% (2.51 MB)

[#005] sha256:c967468c7a3f89be94250716fc1e9fe809e1181956d7c726465458f8e0004161 - 9.98% (9.08 MB)

[#006] sha256:422d3c6dda9d2c3f8a916fcc1e6ae1230d92dcc33a1c6f61e8a67aee7ac36c6f - 0.0% (192 Bytes)

[#007] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)

[#008] sha256:f9d936b5062b3b9ae85aab7ad6c6639d758428ad24bf4ee8d3bab9ad6fe59d58 - 0.0% (127 Bytes)

[#009] sha256:46b8afe1e2960cdbc185d17a3cf9ac603548c371beb7fb9ce2c9b1f4e57c5409 - 44.41% (40.4 MB)


History
2021-06-23 00:20:40 UTC

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

2021-06-23 00:20:40 UTC

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

2021-06-23 14:43:51 UTC

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

2021-06-23 14:43:51 UTC

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

2021-06-23 14:43:58 UTC

/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/*

2021-06-23 15:02:58 UTC

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

2021-06-23 15:02:58 UTC

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

2021-06-23 15:12:28 UTC

/bin/sh -c set -ex && savedAptMark="$(apt-mark showmanual)" && apt-get update && apt-get install -y --no-install-recommends dpkg-dev gcc libbluetooth-dev libbz2-dev libc6-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 $(command -v gpg > /dev/null || echo 'gnupg dirmngr') && 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 hkps://keys.openpgp.org --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 && 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-system-ffi --without-ensurepip && make -j "$(nproc)" LDFLAGS="-Wl,--strip-all" && make install && 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 '*.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 '/=>/ { print $(NF-1) }' | 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

2021-06-23 15:12:29 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

2021-06-29 01:30:31 UTC

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

2021-06-29 01:30:31 UTC

/bin/sh -c #(nop) ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/a1675ab6c2bd898ed82b1f58c486097f763c74a9/public/get-pip.py

2021-06-29 01:30:31 UTC

/bin/sh -c #(nop) ENV PYTHON_GET_PIP_SHA256=6665659241292b2147b58922b9ffe11dda66b39d52d8a6f3aa310bc1d60ea6f7

2021-06-29 01:30:44 UTC

/bin/sh -c set -ex; 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 --check --strict -; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; 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 -name idle_test \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \) -exec rm -rf '{}' +; rm -f get-pip.py

2021-06-29 01:30:45 UTC

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

2025-02-22 15:48:35 UTC (buildkit.dockerfile.v0)

LABEL author=Lan

2025-02-22 15:48:35 UTC (buildkit.dockerfile.v0)

LABEL email=xzu@live.com

2025-02-22 15:48:35 UTC (buildkit.dockerfile.v0)

COPY . /app # buildkit

2025-02-22 15:48:35 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && echo 'Asia/Shanghai' >/etc/timezone # buildkit

2025-02-22 15:48:35 UTC (buildkit.dockerfile.v0)

WORKDIR /app

2025-02-22 15:48:35 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c rm -rf docs fcb-fronted # buildkit

2025-02-22 15:48:54 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c pip install -r requirements.txt # buildkit

2025-02-22 15:48:54 UTC (buildkit.dockerfile.v0)

EXPOSE map[12345/tcp:{}]

2025-02-22 15:48:54 UTC (buildkit.dockerfile.v0)

CMD ["python" "main.py"]

Details
Created

2025-02-22 15:53:01 UTC

Size

89.2 MB

Content Digest
Labels
  • author
    Lan
  • email
    xzu@live.com

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_GET_PIP_SHA256

6665659241292b2147b58922b9ffe11dda66b39d52d8a6f3aa310bc1d60ea6f7

PYTHON_GET_PIP_URL

https://github.com/pypa/get-pip/raw/a1675ab6c2bd898ed82b1f58c486097f763c74a9/public/get-pip.py

PYTHON_PIP_VERSION

21.1.3

PYTHON_VERSION

3.9.5


Layers

[#000] sha256:448f6bf000e31217a7c202c659b03b7f8ac8d3ae6b03ef7a2f8339be2f00ff4a - 27.7% (24.7 MB)

[#001] sha256:f757da607395a2c2908a5c32ca19a8e5af673edeacd38e217046afdd3e67f42d - 2.82% (2.51 MB)

[#002] sha256:5b1aa7bcd73d389f1158ce387388c9a198b52777b4a90fade00f3c717c2f3cb4 - 11.69% (10.4 MB)

[#003] sha256:62ab40c886d76efa2a7d30d1a76cead835c052996228fbc48eb4407227c44eea - 0.0% (232 Bytes)

[#004] sha256:a5460e94310bd97843e37eb8301c27fc2b387b6b5fcb7599f22eca9d64d1abc3 - 2.82% (2.51 MB)

[#005] sha256:c967468c7a3f89be94250716fc1e9fe809e1181956d7c726465458f8e0004161 - 10.17% (9.08 MB)

[#006] sha256:422d3c6dda9d2c3f8a916fcc1e6ae1230d92dcc33a1c6f61e8a67aee7ac36c6f - 0.0% (192 Bytes)

[#007] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)

[#008] sha256:f9d936b5062b3b9ae85aab7ad6c6639d758428ad24bf4ee8d3bab9ad6fe59d58 - 0.0% (127 Bytes)

[#009] sha256:b095a082f0439d5196c420272a1e8d4d5057bc4631ab9571071e2c319581392d - 44.81% (40 MB)


History
2021-06-22 23:49:40 UTC

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

2021-06-22 23:49:40 UTC

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

2021-06-23 10:54:30 UTC

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

2021-06-23 10:54:30 UTC

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

2021-06-23 10:54:36 UTC

/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/*

2021-06-23 11:08:40 UTC

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

2021-06-23 11:08:40 UTC

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

2021-06-23 11:15:40 UTC

/bin/sh -c set -ex && savedAptMark="$(apt-mark showmanual)" && apt-get update && apt-get install -y --no-install-recommends dpkg-dev gcc libbluetooth-dev libbz2-dev libc6-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 $(command -v gpg > /dev/null || echo 'gnupg dirmngr') && 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 hkps://keys.openpgp.org --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 && 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-system-ffi --without-ensurepip && make -j "$(nproc)" LDFLAGS="-Wl,--strip-all" && make install && 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 '*.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 '/=>/ { print $(NF-1) }' | 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

2021-06-23 11:15:40 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

2021-06-28 23:41:03 UTC

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

2021-06-28 23:41:03 UTC

/bin/sh -c #(nop) ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/a1675ab6c2bd898ed82b1f58c486097f763c74a9/public/get-pip.py

2021-06-28 23:41:03 UTC

/bin/sh -c #(nop) ENV PYTHON_GET_PIP_SHA256=6665659241292b2147b58922b9ffe11dda66b39d52d8a6f3aa310bc1d60ea6f7

2021-06-28 23:41:16 UTC

/bin/sh -c set -ex; 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 --check --strict -; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; 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 -name idle_test \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \) -exec rm -rf '{}' +; rm -f get-pip.py

2021-06-28 23:41:16 UTC

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

2025-02-22 15:48:35 UTC (buildkit.dockerfile.v0)

LABEL author=Lan

2025-02-22 15:48:35 UTC (buildkit.dockerfile.v0)

LABEL email=xzu@live.com

2025-02-22 15:48:35 UTC (buildkit.dockerfile.v0)

COPY . /app # buildkit

2025-02-22 15:48:35 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && echo 'Asia/Shanghai' >/etc/timezone # buildkit

2025-02-22 15:48:35 UTC (buildkit.dockerfile.v0)

WORKDIR /app

2025-02-22 15:48:35 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c rm -rf docs fcb-fronted # buildkit

2025-02-22 15:53:01 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c pip install -r requirements.txt # buildkit

2025-02-22 15:53:01 UTC (buildkit.dockerfile.v0)

EXPOSE map[12345/tcp:{}]

2025-02-22 15:53:01 UTC (buildkit.dockerfile.v0)

CMD ["python" "main.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