Namespace
lfedge
Image / Tag
ekuiper:2.1-alpine-python
Content Digest
sha256:fe1735f8424746fea8ade626aa559652d5c204f5b517e188862dfc458774151b
Details
Created

2025-07-11 05:19:31 UTC

Size

51.6 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2025-07-11T05:19:42.942Z
  • org.opencontainers.image.description
    Lightweight data stream processing engine for IoT edge
  • org.opencontainers.image.licenses
    Apache-2.0
  • org.opencontainers.image.revision
    efdc7db31a70df1ade071ef4f724984eb296785d
  • 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.5-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

c30bb24b7f1e9a19b11b55a546434f74e739bb4c271a3e3a80ff4380d49f7adb

PYTHON_VERSION

3.12.11


Layers

[#000] sha256:fe07684b16b82247c3539ed86a65ff37a76138ec25d380bd80c869a1a4c73236 - 7.02% (3.62 MB)

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

[#002] sha256:8d509b0ca09e5bba5ede897d887a4caf0e5cad7648004829dffece3d24f8032c - 25.29% (13 MB)

[#003] sha256:4fcf3b95120bd8da9988408a52d7cbfc9ef9bc00cb679a3c090234d73b8504af - 0.0% (249 Bytes)

[#004] sha256:5336c8060d06641628d6fbef0bb5f5abca85e8ec7312beab1425ea7ae028db46 - 0.0% (94 Bytes)

[#005] sha256:193c33775b33762dac112ddd56812d29771f3526fc0fb33531aa9f32d61d9066 - 0.0% (988 Bytes)

[#006] sha256:d12b623dd74d9282cc69becc0dd683f98d47f74a45f3b123322ef7b159e3c391 - 0.0% (636 Bytes)

[#007] sha256:53a588be56e3f72d1b6802bf1b215cbc42e16faccf2a77f680f7db37c5662f7e - 66.84% (34.5 MB)


History
2025-05-30 16:20:41 UTC (buildkit.dockerfile.v0)

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

2025-05-30 16:20:41 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2025-06-04 00:40:01 UTC (buildkit.dockerfile.v0)

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

2025-06-04 00:40:01 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2025-06-04 00:40:01 UTC (buildkit.dockerfile.v0)

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

2025-06-04 00:40:01 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305

2025-06-04 00:40:01 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.12.11

2025-06-04 00:40:01 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SHA256=c30bb24b7f1e9a19b11b55a546434f74e739bb4c271a3e3a80ff4380d49f7adb

2025-06-04 00:40:01 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-06-04 00:40:01 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-06-04 00:40:01 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2025-07-11 05:17:53 UTC (buildkit.dockerfile.v0)

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

2025-07-11 05:17:53 UTC (buildkit.dockerfile.v0)

ARG KUIPER_USER=kuiper

2025-07-11 05:17:53 UTC (buildkit.dockerfile.v0)

ARG KUIPER_USER_ID=1001

2025-07-11 05:17:53 UTC (buildkit.dockerfile.v0)

WORKDIR /kuiper

2025-07-11 05:17:53 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-07-11 05:17:53 UTC (buildkit.dockerfile.v0)

USER kuiper

2025-07-11 05:17:54 UTC (buildkit.dockerfile.v0)

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

2025-07-11 05:19:31 UTC (buildkit.dockerfile.v0)

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

2025-07-11 05:19:31 UTC (buildkit.dockerfile.v0)

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

2025-07-11 05:19:31 UTC (buildkit.dockerfile.v0)

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

2025-07-11 05:19:31 UTC (buildkit.dockerfile.v0)

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

2025-07-11 05:19:31 UTC (buildkit.dockerfile.v0)

CMD ["./bin/kuiperd"]

Details
Created

2025-07-11 06:03:34 UTC

Size

47.9 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2025-07-11T05:19:42.942Z
  • org.opencontainers.image.description
    Lightweight data stream processing engine for IoT edge
  • org.opencontainers.image.licenses
    Apache-2.0
  • org.opencontainers.image.revision
    efdc7db31a70df1ade071ef4f724984eb296785d
  • 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.5-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

c30bb24b7f1e9a19b11b55a546434f74e739bb4c271a3e3a80ff4380d49f7adb

PYTHON_VERSION

3.12.11


Layers

[#000] sha256:22e4d17029cf647ff505d5389be90006efc5ed4178aed9a6d798a2bf7a675fc9 - 6.42% (3.07 MB)

[#001] sha256:72c74e96bfa905036c4a182345ac5e3f3cdf8045aede2f3a6bc0b97677fa3615 - 0.92% (449 KB)

[#002] sha256:26cb37e284f907a9ff2b4c773ca254fa0493c2894d2f067c381995549a929b63 - 25.57% (12.2 MB)

[#003] sha256:7dc2b751185649bc72746962fb160c0f49b85c87aa573a40ef5e544d606fdcdb - 0.0% (247 Bytes)

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

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

[#006] sha256:5dcc69bd81eaa1c740100417af0132d16e76839698065b0973280b54c30f5569 - 0.0% (637 Bytes)

[#007] sha256:762e8e5a1acc25be0afeaf63737de3c4c7193516aac66fe572795236ff8b34d7 - 67.09% (32.1 MB)


History
2025-05-30 16:20:41 UTC (buildkit.dockerfile.v0)

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

2025-05-30 16:20:41 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2025-06-04 00:40:01 UTC (buildkit.dockerfile.v0)

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

2025-06-04 00:40:01 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2025-06-04 00:40:01 UTC (buildkit.dockerfile.v0)

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

2025-06-04 00:40:01 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305

2025-06-04 00:40:01 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.12.11

2025-06-04 00:40:01 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SHA256=c30bb24b7f1e9a19b11b55a546434f74e739bb4c271a3e3a80ff4380d49f7adb

2025-06-04 00:40:01 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-06-04 00:40:01 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-06-04 00:40:01 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2025-07-11 05:19:46 UTC (buildkit.dockerfile.v0)

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

2025-07-11 05:19:46 UTC (buildkit.dockerfile.v0)

ARG KUIPER_USER=kuiper

2025-07-11 05:19:46 UTC (buildkit.dockerfile.v0)

ARG KUIPER_USER_ID=1001

2025-07-11 05:19:46 UTC (buildkit.dockerfile.v0)

WORKDIR /kuiper

2025-07-11 05:19:46 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-07-11 05:19:46 UTC (buildkit.dockerfile.v0)

USER kuiper

2025-07-11 05:19:46 UTC (buildkit.dockerfile.v0)

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

2025-07-11 06:03:34 UTC (buildkit.dockerfile.v0)

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

2025-07-11 06:03:34 UTC (buildkit.dockerfile.v0)

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

2025-07-11 06:03:34 UTC (buildkit.dockerfile.v0)

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

2025-07-11 06:03:34 UTC (buildkit.dockerfile.v0)

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

2025-07-11 06:03:34 UTC (buildkit.dockerfile.v0)

CMD ["./bin/kuiperd"]

Details
Created

2025-07-11 06:02:42 UTC

Size

49 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2025-07-11T05:19:42.942Z
  • org.opencontainers.image.description
    Lightweight data stream processing engine for IoT edge
  • org.opencontainers.image.licenses
    Apache-2.0
  • org.opencontainers.image.revision
    efdc7db31a70df1ade071ef4f724984eb296785d
  • 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.5-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

c30bb24b7f1e9a19b11b55a546434f74e739bb4c271a3e3a80ff4380d49f7adb

PYTHON_VERSION

3.12.11


Layers

[#000] sha256:d69d4d41cfe2ee680d6972795e2a1eb9e4dc4ec3b3c5e0797c9ab43bb3726fa7 - 8.06% (3.94 MB)

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

[#002] sha256:be8470ac5ece63f21f2ef45469c1fd457c11844da8a489247282e8d6e6bff18c - 26.74% (13.1 MB)

[#003] sha256:f3dfcab90cf4b682fbea350e376e66dbd9e4a267f1eb91788373cdd6408dad65 - 0.0% (247 Bytes)

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

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

[#006] sha256:00ee29d6c47f33a4df1f974343f1b0e07e6f341de5d7b29c318e6853bc3d6358 - 0.0% (637 Bytes)

[#007] sha256:3701276ed09f81741622b2f3a41f6fccd6b4c8aa62fa08fff4477003b43a1d9a - 64.3% (31.5 MB)


History
2025-05-30 16:20:41 UTC (buildkit.dockerfile.v0)

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

2025-05-30 16:20:41 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2025-06-04 00:40:01 UTC (buildkit.dockerfile.v0)

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

2025-06-04 00:40:01 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2025-06-04 00:40:01 UTC (buildkit.dockerfile.v0)

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

2025-06-04 00:40:01 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305

2025-06-04 00:40:01 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.12.11

2025-06-04 00:40:01 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SHA256=c30bb24b7f1e9a19b11b55a546434f74e739bb4c271a3e3a80ff4380d49f7adb

2025-06-04 00:40:01 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-06-04 00:40:01 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-06-04 00:40:01 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2025-07-11 05:19:46 UTC (buildkit.dockerfile.v0)

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

2025-07-11 05:19:46 UTC (buildkit.dockerfile.v0)

ARG KUIPER_USER=kuiper

2025-07-11 05:19:46 UTC (buildkit.dockerfile.v0)

ARG KUIPER_USER_ID=1001

2025-07-11 05:19:46 UTC (buildkit.dockerfile.v0)

WORKDIR /kuiper

2025-07-11 05:19:46 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-07-11 05:19:46 UTC (buildkit.dockerfile.v0)

USER kuiper

2025-07-11 05:19:46 UTC (buildkit.dockerfile.v0)

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

2025-07-11 06:02:42 UTC (buildkit.dockerfile.v0)

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

2025-07-11 06:02:42 UTC (buildkit.dockerfile.v0)

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

2025-07-11 06:02:42 UTC (buildkit.dockerfile.v0)

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

2025-07-11 06:02:42 UTC (buildkit.dockerfile.v0)

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

2025-07-11 06:02:42 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