Namespace
juicedata
Image / Tag
juicefs-csi-driver:ceph-luminous
Content Digest
sha256:563f6ecc6606c052bec14d378801b64248950cbf2eae3d32e0f1c764f33e779a
Details
Created

2021-03-31 10:18:36 UTC

Size

133 MB

Content Digest
Environment
GPG_KEY

0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D

JFS_AUTO_UPGRADE

enabled

JUICEFS_CLI

/usr/bin/juicefs

LANG

C.UTF-8

PATH

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

PYTHON_GET_PIP_SHA256

c3b81e5d06371e135fb3156dc7d8fd6270735088428c4a9a5ec1f342e2024565

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

21.0.1

PYTHON_VERSION

3.6.13


Layers

[#000] sha256:ac2522cc72690febc428fb46fb39a4efc5e0a721c3ad15d9992b01515f2fad1a - 19.42% (25.8 MB)

[#001] sha256:8edbc159ce3659ac23c5aed9f82e145c8124705a83cf4d0b9546239c3eaaca33 - 1.98% (2.64 MB)

[#002] sha256:0796e4716a5ea5e78ba6ee28bfdad3e43f34828fa0e24e3e99ea7e025f820a20 - 6.94% (9.24 MB)

[#003] sha256:28d68acb726ab569f72b7795d37e375357cb9dded948e95c58be6dcf49355947 - 0.0% (233 Bytes)

[#004] sha256:f4b617c199c529dc86635f268c565916992e0357d876b1b5fc5ebe51dd48bf15 - 1.76% (2.34 MB)

[#005] sha256:05bfcd908e7b3504aa406724b33fa8e868044fa1c50d0b2f94cd10e8d3ee1a9f - 0.0% (126 Bytes)

[#006] sha256:c13788e268c1e4e2d7d3df9260c8e2975811a2dcf45445b3f6fdabc5448c7f07 - 26.66% (35.5 MB)

[#007] sha256:b30fec3c22cc5ba885a4ea86a036d7181701664188274b88a127a24e777d18c0 - 19.33% (25.7 MB)

[#008] sha256:6f2d88de753ecc69c1c4aaf9a33015d2d045f63d114cdcc6245c394ea6b387eb - 16.01% (21.3 MB)

[#009] sha256:be6004c4bd39d6ca143681bfb44e2c432f66d2ee92696b6b0fca19c8e39a23c4 - 0.0% (4.59 KB)

[#010] sha256:b2444337f0af2ee98ccccdc40b44ec6a05d4edd5d666495874c241c78f94d1b1 - 7.91% (10.5 MB)


History
2021-03-26 15:20:59 UTC

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

2021-03-26 15:20:59 UTC

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

2021-03-27 02:33:51 UTC

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

2021-03-27 02:33:52 UTC

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

2021-03-27 02:52:29 UTC

/bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates netbase ; rm -rf /var/lib/apt/lists/*

2021-03-27 03:03:20 UTC

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

2021-03-27 03:23:01 UTC

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

2021-03-27 03:31:01 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 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 ha.pool.sks-keyservers.net --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" PROFILE_TASK='-m test.regrtest --pgo test_array test_base64 test_binascii test_binhex test_binop test_bytes test_c_locale_coercion test_class test_cmath test_codecs test_compile test_complex test_csv test_decimal test_dict test_float test_fstring test_hashlib test_io test_iter test_json test_long test_math test_memoryview test_pickle test_re test_set test_slice test_struct test_threading test_time test_traceback test_unicode ' && 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' \) \) -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 '/=>/ { 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-03-27 03:31:02 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-03-27 03:31:03 UTC

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

2021-03-27 03:31:03 UTC

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

2021-03-27 03:31:03 UTC

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

2021-03-27 03:31:20 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-03-27 03:31:20 UTC

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

2021-03-31 10:05:14 UTC (buildkit.dockerfile.v0)

WORKDIR /app

2021-03-31 10:05:41 UTC (buildkit.dockerfile.v0)

ENV JUICEFS_CLI=/usr/bin/juicefs

2021-03-31 10:05:41 UTC (buildkit.dockerfile.v0)

ENV JFS_AUTO_UPGRADE=enabled

2021-03-31 10:05:41 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c apt-get update && apt-get install -y curl librados2 && curl -sSL https://juicefs.com/static/juicefs -o ${JUICEFS_CLI} && chmod +x ${JUICEFS_CLI} && ln -s /usr/local/bin/python /usr/bin/python # buildkit

2021-03-31 10:17:21 UTC (buildkit.dockerfile.v0)

COPY /juicefs-csi-driver/bin/juicefs-csi-driver /workspace/juicefs/juicefs.ceph /bin/ # buildkit

2021-03-31 10:17:22 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c mv /bin/juicefs.ceph /bin/juicefs && ln -s /bin/juicefs /bin/mount.juicefs # buildkit

2021-03-31 10:17:22 UTC (buildkit.dockerfile.v0)

COPY THIRD-PARTY / # buildkit

2021-03-31 10:18:36 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c juicefs version # buildkit

2021-03-31 10:18:36 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["/bin/juicefs-csi-driver"]

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