Namespace
lfedge
Image / Tag
ekuiper:2.1.4-alpine-python
Content Digest
sha256:fe80c3016487ed6fae97313fb8aea6ee9a7cb79bae13b6246c083f9a90486ec6
Details
Created

2025-05-27 02:23:02 UTC

Size

51.4 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2025-05-27T02:23:13.934Z
  • org.opencontainers.image.description
    Lightweight data stream processing engine for IoT edge
  • org.opencontainers.image.licenses
    Apache-2.0
  • org.opencontainers.image.revision
    ac910c5d4d8a5860d4dd6b9a3b1d3264984cb7ac
  • org.opencontainers.image.source
    https://github.com/lf-edge/ekuiper
  • org.opencontainers.image.title
    ekuiper
  • org.opencontainers.image.url
    https://github.com/lf-edge/ekuiper
  • org.opencontainers.image.version
    2.1.4-alpine-python

Environment
GPG_KEY

7169605F62C751356D054A26A821E680E5FA6305

KUIPER_HOME

/kuiper

KUIPER__BASIC__CONSOLELOG

true

LANG

C.UTF-8

MAINTAINER

emqx.io

PATH

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

PYTHON_SHA256

07ab697474595e06f06647417d3c7fa97ded07afc1a7e4454c5639919b46eaea

PYTHON_VERSION

3.12.10


Layers

[#000] sha256:f18232174bc91741fdf3da96d85011092101a032a93a388b79e99e69c2d5c870 - 6.75% (3.47 MB)

[#001] sha256:d39e98ccbc35a301f215a15d73fd647ad7044124c3835da293d82cbb765cab03 - 0.85% (449 KB)

[#002] sha256:a597717b83500ddd11c9b9eddc7094663b2a376c4c5cb0078b433e11a82e70d0 - 25.34% (13 MB)

[#003] sha256:d96ff845ea26c45b2499dfa5fb9ef5b354ba49ee6025d35c4ba81403072c10ad - 0.0% (252 Bytes)

[#004] sha256:9224fab489f33947ffb0e901a1e0074c61251ab400c5452bca24585b44da0368 - 0.0% (96 Bytes)

[#005] sha256:a367ec810f8592203f460195cce03d1817a98279b82c63ae5d8d5f6653e7d3a8 - 0.0% (990 Bytes)

[#006] sha256:7cd65fe6a0a4a75a2dd687db903341fcc7a1eab205b759ae5bc9f045feded9f2 - 0.0% (633 Bytes)

[#007] sha256:e2a0beab210f65cc36ccf6e6ef8f2d9e2e18457f69a6de9bcea698af94e7715a - 67.05% (34.5 MB)


History
2025-02-14 03:28:36 UTC (buildkit.dockerfile.v0)

ADD alpine-minirootfs-3.21.3-x86_64.tar.gz / # buildkit

2025-02-14 03:28:36 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2025-05-08 22:27:23 UTC (buildkit.dockerfile.v0)

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

2025-05-08 22:27:23 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2025-05-08 22:27:23 UTC (buildkit.dockerfile.v0)

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

2025-05-08 22:27:23 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305

2025-05-08 22:27:23 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.12.10

2025-05-08 22:27:23 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SHA256=07ab697474595e06f06647417d3c7fa97ded07afc1a7e4454c5639919b46eaea

2025-05-08 22:27:23 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 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"; 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-option-checking=fatal --enable-shared $(test "$gnuArch" != 'riscv64-linux-musl' && echo '--with-lto') --with-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000"; LDFLAGS="${LDFLAGS:--Wl},--strip-all"; arch="$(apk --print-arch)"; case "$arch" in x86_64|aarch64) EXTRA_CFLAGS="${EXTRA_CFLAGS:-} -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer"; ;; x86) ;; *) 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 '{}' + ; 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 --version # buildkit

2025-05-08 22:27:23 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-05-08 22:27:23 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2025-05-27 02:21:27 UTC (buildkit.dockerfile.v0)

ENV MAINTAINER=emqx.io KUIPER_HOME=/kuiper KUIPER__BASIC__CONSOLELOG=true

2025-05-27 02:21:27 UTC (buildkit.dockerfile.v0)

ARG KUIPER_USER=kuiper

2025-05-27 02:21:27 UTC (buildkit.dockerfile.v0)

ARG KUIPER_USER_ID=1001

2025-05-27 02:21:27 UTC (buildkit.dockerfile.v0)

WORKDIR /kuiper

2025-05-27 02:21:27 UTC (buildkit.dockerfile.v0)

RUN |2 KUIPER_USER=kuiper KUIPER_USER_ID=1001 /bin/sh -c adduser -DH -s /sbin/nologin -u ${KUIPER_USER_ID} ${KUIPER_USER} && chown -Rh ${KUIPER_USER}:${KUIPER_USER} ${KUIPER_HOME} && mkdir -p /usr/local/taos && chown -Rh ${KUIPER_USER}:${KUIPER_USER} /usr/local/taos # buildkit

2025-05-27 02:21:27 UTC (buildkit.dockerfile.v0)

USER kuiper

2025-05-27 02:21:28 UTC (buildkit.dockerfile.v0)

COPY --chown=kuiper:kuiper ./deploy/docker/docker-entrypoint.sh /usr/bin/docker-entrypoint.sh # buildkit

2025-05-27 02:23:02 UTC (buildkit.dockerfile.v0)

COPY --chown=kuiper:kuiper /go/kuiper/_build/kuiper-* /kuiper/ # buildkit

2025-05-27 02:23:02 UTC (buildkit.dockerfile.v0)

VOLUME [/kuiper/etc /kuiper/data /kuiper/plugins /kuiper/log]

2025-05-27 02:23:02 UTC (buildkit.dockerfile.v0)

EXPOSE map[20498/tcp:{} 9081/tcp:{}]

2025-05-27 02:23:02 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"]

2025-05-27 02:23:02 UTC (buildkit.dockerfile.v0)

CMD ["./bin/kuiperd"]

Details
Created

2025-05-27 03:06:58 UTC

Size

47.7 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2025-05-27T02:23:13.934Z
  • org.opencontainers.image.description
    Lightweight data stream processing engine for IoT edge
  • org.opencontainers.image.licenses
    Apache-2.0
  • org.opencontainers.image.revision
    ac910c5d4d8a5860d4dd6b9a3b1d3264984cb7ac
  • org.opencontainers.image.source
    https://github.com/lf-edge/ekuiper
  • org.opencontainers.image.title
    ekuiper
  • org.opencontainers.image.url
    https://github.com/lf-edge/ekuiper
  • org.opencontainers.image.version
    2.1.4-alpine-python

Environment
GPG_KEY

7169605F62C751356D054A26A821E680E5FA6305

KUIPER_HOME

/kuiper

KUIPER__BASIC__CONSOLELOG

true

LANG

C.UTF-8

MAINTAINER

emqx.io

PATH

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

PYTHON_SHA256

07ab697474595e06f06647417d3c7fa97ded07afc1a7e4454c5639919b46eaea

PYTHON_VERSION

3.12.10


Layers

[#000] sha256:85f3b18f9f5a8655db86c6dfb02bb01011ffef63d10a173843c5c65c3e9137b7 - 6.19% (2.95 MB)

[#001] sha256:be29710354556f0f0df673704b6b540828d1087963ffd820135dfcb597033328 - 0.92% (448 KB)

[#002] sha256:f8b3f32174ee49ea7ba44c8151ca77fa9ec6baf9378f090196e0be08c318c353 - 25.6% (12.2 MB)

[#003] sha256:7c883e721ff6ce9a8708e5e7da301f2f81e1dae71f59ac41127f309a4b1e9357 - 0.0% (246 Bytes)

[#004] sha256:511e3cd3d53a85ee131991254a48ab00c6c375b5e356882f060fc4fa60886157 - 0.0% (96 Bytes)

[#005] sha256:e64522083e4d78fd4cda4b3cf245f68062471426a1a8c10ad7a04ee7ac3d879b - 0.0% (989 Bytes)

[#006] sha256:45cd799d78cef8d8bd0dea7c25103c1ecec69fe4c48ef71b806505a902a8eca4 - 0.0% (632 Bytes)

[#007] sha256:28412d5a9a9120f1debe77e2ceb831763bd0ecbea7f99fa3d0f58fcf27f6985f - 67.28% (32.1 MB)


History
2025-02-14 03:28:36 UTC (buildkit.dockerfile.v0)

ADD alpine-minirootfs-3.21.3-armv7.tar.gz / # buildkit

2025-02-14 03:28:36 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2025-05-08 22:27:23 UTC (buildkit.dockerfile.v0)

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

2025-05-08 22:27:23 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2025-05-08 22:27:23 UTC (buildkit.dockerfile.v0)

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

2025-05-08 22:27:23 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305

2025-05-08 22:27:23 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.12.10

2025-05-08 22:27:23 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SHA256=07ab697474595e06f06647417d3c7fa97ded07afc1a7e4454c5639919b46eaea

2025-05-08 22:27:23 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 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"; 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-option-checking=fatal --enable-shared $(test "$gnuArch" != 'riscv64-linux-musl' && echo '--with-lto') --with-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000"; LDFLAGS="${LDFLAGS:--Wl},--strip-all"; arch="$(apk --print-arch)"; case "$arch" in x86_64|aarch64) EXTRA_CFLAGS="${EXTRA_CFLAGS:-} -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer"; ;; x86) ;; *) 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 '{}' + ; 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 --version # buildkit

2025-05-08 22:27:23 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-05-08 22:27:23 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2025-05-27 02:23:17 UTC (buildkit.dockerfile.v0)

ENV MAINTAINER=emqx.io KUIPER_HOME=/kuiper KUIPER__BASIC__CONSOLELOG=true

2025-05-27 02:23:17 UTC (buildkit.dockerfile.v0)

ARG KUIPER_USER=kuiper

2025-05-27 02:23:17 UTC (buildkit.dockerfile.v0)

ARG KUIPER_USER_ID=1001

2025-05-27 02:23:17 UTC (buildkit.dockerfile.v0)

WORKDIR /kuiper

2025-05-27 02:23:17 UTC (buildkit.dockerfile.v0)

RUN |2 KUIPER_USER=kuiper KUIPER_USER_ID=1001 /bin/sh -c adduser -DH -s /sbin/nologin -u ${KUIPER_USER_ID} ${KUIPER_USER} && chown -Rh ${KUIPER_USER}:${KUIPER_USER} ${KUIPER_HOME} && mkdir -p /usr/local/taos && chown -Rh ${KUIPER_USER}:${KUIPER_USER} /usr/local/taos # buildkit

2025-05-27 02:23:17 UTC (buildkit.dockerfile.v0)

USER kuiper

2025-05-27 02:23:17 UTC (buildkit.dockerfile.v0)

COPY --chown=kuiper:kuiper ./deploy/docker/docker-entrypoint.sh /usr/bin/docker-entrypoint.sh # buildkit

2025-05-27 03:06:58 UTC (buildkit.dockerfile.v0)

COPY --chown=kuiper:kuiper /go/kuiper/_build/kuiper-* /kuiper/ # buildkit

2025-05-27 03:06:58 UTC (buildkit.dockerfile.v0)

VOLUME [/kuiper/etc /kuiper/data /kuiper/plugins /kuiper/log]

2025-05-27 03:06:58 UTC (buildkit.dockerfile.v0)

EXPOSE map[20498/tcp:{} 9081/tcp:{}]

2025-05-27 03:06:58 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"]

2025-05-27 03:06:58 UTC (buildkit.dockerfile.v0)

CMD ["./bin/kuiperd"]

Details
Created

2025-05-27 03:06:04 UTC

Size

48.8 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2025-05-27T02:23:13.934Z
  • org.opencontainers.image.description
    Lightweight data stream processing engine for IoT edge
  • org.opencontainers.image.licenses
    Apache-2.0
  • org.opencontainers.image.revision
    ac910c5d4d8a5860d4dd6b9a3b1d3264984cb7ac
  • org.opencontainers.image.source
    https://github.com/lf-edge/ekuiper
  • org.opencontainers.image.title
    ekuiper
  • org.opencontainers.image.url
    https://github.com/lf-edge/ekuiper
  • org.opencontainers.image.version
    2.1.4-alpine-python

Environment
GPG_KEY

7169605F62C751356D054A26A821E680E5FA6305

KUIPER_HOME

/kuiper

KUIPER__BASIC__CONSOLELOG

true

LANG

C.UTF-8

MAINTAINER

emqx.io

PATH

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

PYTHON_SHA256

07ab697474595e06f06647417d3c7fa97ded07afc1a7e4454c5639919b46eaea

PYTHON_VERSION

3.12.10


Layers

[#000] sha256:6e771e15690e2fabf2332d3a3b744495411d6e0b00b2aea64419b58b0066cf81 - 7.8% (3.81 MB)

[#001] sha256:f50b10efc2b0f5c71ea50728af1c0b9c1a4787270fc322139a1e8ceb93bb3b43 - 0.9% (451 KB)

[#002] sha256:7692574bf4801943e7fc167f876c99a00dd65e9748b9cfd4840a398c57bf4f6c - 26.79% (13.1 MB)

[#003] sha256:0caf59132a0bc45e45c1d3c3cdea5e9adedca3b84de1300ec64d4ad49182ef2b - 0.0% (248 Bytes)

[#004] sha256:f3185550cd87f16e75e991076e1211f8f4d88a838588756317d66e02c37d7df6 - 0.0% (96 Bytes)

[#005] sha256:a34210b18ae31a815050f9392b1796f09e34183bd8f2528b8f4d31a2e84fb63f - 0.0% (982 Bytes)

[#006] sha256:4afbc27be1356b28a67a1cdfcefcb5192194cb385ef9f475358e4128d283ce78 - 0.0% (634 Bytes)

[#007] sha256:482a90a52e874c1b17b33bbc09665ea0a2385b40c733496bb8572dd2172d8703 - 64.5% (31.5 MB)


History
2025-02-14 03:28:36 UTC (buildkit.dockerfile.v0)

ADD alpine-minirootfs-3.21.3-aarch64.tar.gz / # buildkit

2025-02-14 03:28:36 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2025-05-08 22:27:23 UTC (buildkit.dockerfile.v0)

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

2025-05-08 22:27:23 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2025-05-08 22:27:23 UTC (buildkit.dockerfile.v0)

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

2025-05-08 22:27:23 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305

2025-05-08 22:27:23 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.12.10

2025-05-08 22:27:23 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SHA256=07ab697474595e06f06647417d3c7fa97ded07afc1a7e4454c5639919b46eaea

2025-05-08 22:27:23 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 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"; 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-option-checking=fatal --enable-shared $(test "$gnuArch" != 'riscv64-linux-musl' && echo '--with-lto') --with-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000"; LDFLAGS="${LDFLAGS:--Wl},--strip-all"; arch="$(apk --print-arch)"; case "$arch" in x86_64|aarch64) EXTRA_CFLAGS="${EXTRA_CFLAGS:-} -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer"; ;; x86) ;; *) 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 '{}' + ; 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 --version # buildkit

2025-05-08 22:27:23 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-05-08 22:27:23 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2025-05-27 02:23:17 UTC (buildkit.dockerfile.v0)

ENV MAINTAINER=emqx.io KUIPER_HOME=/kuiper KUIPER__BASIC__CONSOLELOG=true

2025-05-27 02:23:17 UTC (buildkit.dockerfile.v0)

ARG KUIPER_USER=kuiper

2025-05-27 02:23:17 UTC (buildkit.dockerfile.v0)

ARG KUIPER_USER_ID=1001

2025-05-27 02:23:17 UTC (buildkit.dockerfile.v0)

WORKDIR /kuiper

2025-05-27 02:23:17 UTC (buildkit.dockerfile.v0)

RUN |2 KUIPER_USER=kuiper KUIPER_USER_ID=1001 /bin/sh -c adduser -DH -s /sbin/nologin -u ${KUIPER_USER_ID} ${KUIPER_USER} && chown -Rh ${KUIPER_USER}:${KUIPER_USER} ${KUIPER_HOME} && mkdir -p /usr/local/taos && chown -Rh ${KUIPER_USER}:${KUIPER_USER} /usr/local/taos # buildkit

2025-05-27 02:23:17 UTC (buildkit.dockerfile.v0)

USER kuiper

2025-05-27 02:23:17 UTC (buildkit.dockerfile.v0)

COPY --chown=kuiper:kuiper ./deploy/docker/docker-entrypoint.sh /usr/bin/docker-entrypoint.sh # buildkit

2025-05-27 03:06:04 UTC (buildkit.dockerfile.v0)

COPY --chown=kuiper:kuiper /go/kuiper/_build/kuiper-* /kuiper/ # buildkit

2025-05-27 03:06:04 UTC (buildkit.dockerfile.v0)

VOLUME [/kuiper/etc /kuiper/data /kuiper/plugins /kuiper/log]

2025-05-27 03:06:04 UTC (buildkit.dockerfile.v0)

EXPOSE map[20498/tcp:{} 9081/tcp:{}]

2025-05-27 03:06:04 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"]

2025-05-27 03:06:04 UTC (buildkit.dockerfile.v0)

CMD ["./bin/kuiperd"]

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