Namespace
lfedge
Image / Tag
ekuiper:2.2.0-alpha.3-slim-python
Content Digest
sha256:6db58c5e3f123be5326fc2130624e7e78555b9b0e9286a7b1ad8b89083a9d3a9
Details
Created

2025-04-24 01:17:34 UTC

Size

89.1 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2025-04-24T01:10:00.952Z
  • org.opencontainers.image.description
    Lightweight data stream processing engine for IoT edge
  • org.opencontainers.image.licenses
    Apache-2.0
  • org.opencontainers.image.revision
    fb9359dcd4d0ab9f58a7cd1ee92b6ea23f9e919f
  • 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.2.0-alpha.3-slim-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:8a628cdd7ccc83e90e5a95888fcb0ec24b991141176c515ad101f12d6433eb96 - 30.22% (26.9 MB)

[#001] sha256:6cca951a45d16183402c0ea0d763285dff4024af76a75119fb405268bc35c359 - 3.76% (3.35 MB)

[#002] sha256:b3b4f30c6749b72e9b25139714a21ee8c3c5689b213a023c7b42be2634cfc320 - 14.62% (13 MB)

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

[#004] sha256:039fe59941e9e4408a1e3f259030f6f74f4ef86aa32f66c590c2826f194ee36a - 42.93% (38.2 MB)

[#005] sha256:c9ff9ecdedc7cd9aa7c74067c5b1472d4ba10e836cbde3b253ee460737c13088 - 8.47% (7.55 MB)

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

[#007] sha256:44117cdde9d6b267f661fa8e9dea0ec393468c659f601cbe0e149dc82338fffd - 0.0% (632 Bytes)


History
2025-04-07 00:00:00 UTC (debuerreotype 0.15)

# debian.sh --arch 'amd64' out/ 'bookworm' '@1743984000'

2025-04-08 19:02:43 UTC (buildkit.dockerfile.v0)

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

2025-04-08 19:02:43 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2025-04-08 19:02:43 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

2025-04-08 19:02:43 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305

2025-04-08 19:02:43 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.12.10

2025-04-08 19:02:43 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SHA256=07ab697474595e06f06647417d3c7fa97ded07afc1a7e4454c5639919b46eaea

2025-04-08 19:02:43 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 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"; 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-optimizations --enable-option-checking=fatal --enable-shared --with-lto --with-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="$(dpkg-buildflags --get CFLAGS)"; LDFLAGS="$(dpkg-buildflags --get LDFLAGS)"; LDFLAGS="${LDFLAGS:--Wl},--strip-all"; arch="$(dpkg --print-architecture)"; arch="${arch##*-}"; case "$arch" in amd64|arm64) EXTRA_CFLAGS="${EXTRA_CFLAGS:-} -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer"; ;; i386) ;; *) 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 '{}' + ; 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/*; export PYTHONDONTWRITEBYTECODE=1; python3 --version; pip3 --version # buildkit

2025-04-08 19:02:43 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-04-08 19:02:43 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2025-04-24 01:17:32 UTC (buildkit.dockerfile.v0)

COPY /go/kuiper/_build/kuiper-* /kuiper/ # buildkit

2025-04-24 01:17:34 UTC (buildkit.dockerfile.v0)

COPY /usr/local/lib/python3.12/site-packages /usr/local/lib/python3.12/site-packages # buildkit

2025-04-24 01:17:34 UTC (buildkit.dockerfile.v0)

WORKDIR /kuiper

2025-04-24 01:17:34 UTC (buildkit.dockerfile.v0)

COPY ./deploy/docker/docker-entrypoint.sh /usr/bin/docker-entrypoint.sh # buildkit

2025-04-24 01:17:34 UTC (buildkit.dockerfile.v0)

ENV MAINTAINER=emqx.io

2025-04-24 01:17:34 UTC (buildkit.dockerfile.v0)

ENV KUIPER_HOME=/kuiper

2025-04-24 01:17:34 UTC (buildkit.dockerfile.v0)

ENV KUIPER__BASIC__CONSOLELOG=true

2025-04-24 01:17:34 UTC (buildkit.dockerfile.v0)

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

2025-04-24 01:17:34 UTC (buildkit.dockerfile.v0)

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

2025-04-24 01:17:34 UTC (buildkit.dockerfile.v0)

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

2025-04-24 01:17:34 UTC (buildkit.dockerfile.v0)

CMD ["./bin/kuiperd"]

Details
Created

2025-04-24 02:05:14 UTC

Size

80.1 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2025-04-24T01:10:00.952Z
  • org.opencontainers.image.description
    Lightweight data stream processing engine for IoT edge
  • org.opencontainers.image.licenses
    Apache-2.0
  • org.opencontainers.image.revision
    fb9359dcd4d0ab9f58a7cd1ee92b6ea23f9e919f
  • 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.2.0-alpha.3-slim-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:addc1be20d0979aa781d79a726ebf749adbc030186e63a44319274194e89cfa3 - 28.51% (22.8 MB)

[#001] sha256:ebdeed5e302497b1968de1331044c42bd4d087b1b79f61050b621362a7a36250 - 3.47% (2.78 MB)

[#002] sha256:ae3f29d3eece4e453b6351cb6aa3d923622b254fd6a3732b79bec9db31d25f21 - 15.08% (12.1 MB)

[#003] sha256:845316289435cc6bffb8605e18ced45adab13305dadd0e46cc6a4d1f77687405 - 0.0% (250 Bytes)

[#004] sha256:048478c58b0e337aad8a50f638333346a218e8a664d8b655103805fd8a84d97c - 44.38% (35.5 MB)

[#005] sha256:98dc3148508165d4a204396a9d5eae9a07b06e701d96b0c07fdeb5431a8ba9c4 - 8.56% (6.86 MB)

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

[#007] sha256:26b0e296cb253ced28f42f4b3617a98b3ad8d1a05a4e65afe99ada6b51435197 - 0.0% (632 Bytes)


History
2025-04-07 00:00:00 UTC (debuerreotype 0.15)

# debian.sh --arch 'armhf' out/ 'bookworm' '@1743984000'

2025-04-08 19:02:43 UTC (buildkit.dockerfile.v0)

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

2025-04-08 19:02:43 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2025-04-08 19:02:43 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

2025-04-08 19:02:43 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305

2025-04-08 19:02:43 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.12.10

2025-04-08 19:02:43 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SHA256=07ab697474595e06f06647417d3c7fa97ded07afc1a7e4454c5639919b46eaea

2025-04-08 19:02:43 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 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"; 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-optimizations --enable-option-checking=fatal --enable-shared --with-lto --with-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="$(dpkg-buildflags --get CFLAGS)"; LDFLAGS="$(dpkg-buildflags --get LDFLAGS)"; LDFLAGS="${LDFLAGS:--Wl},--strip-all"; arch="$(dpkg --print-architecture)"; arch="${arch##*-}"; case "$arch" in amd64|arm64) EXTRA_CFLAGS="${EXTRA_CFLAGS:-} -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer"; ;; i386) ;; *) 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 '{}' + ; 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/*; export PYTHONDONTWRITEBYTECODE=1; python3 --version; pip3 --version # buildkit

2025-04-08 19:02:43 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-04-08 19:02:43 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2025-04-24 02:05:14 UTC (buildkit.dockerfile.v0)

COPY /go/kuiper/_build/kuiper-* /kuiper/ # buildkit

2025-04-24 02:05:14 UTC (buildkit.dockerfile.v0)

COPY /usr/local/lib/python3.12/site-packages /usr/local/lib/python3.12/site-packages # buildkit

2025-04-24 02:05:14 UTC (buildkit.dockerfile.v0)

WORKDIR /kuiper

2025-04-24 02:05:14 UTC (buildkit.dockerfile.v0)

COPY ./deploy/docker/docker-entrypoint.sh /usr/bin/docker-entrypoint.sh # buildkit

2025-04-24 02:05:14 UTC (buildkit.dockerfile.v0)

ENV MAINTAINER=emqx.io

2025-04-24 02:05:14 UTC (buildkit.dockerfile.v0)

ENV KUIPER_HOME=/kuiper

2025-04-24 02:05:14 UTC (buildkit.dockerfile.v0)

ENV KUIPER__BASIC__CONSOLELOG=true

2025-04-24 02:05:14 UTC (buildkit.dockerfile.v0)

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

2025-04-24 02:05:14 UTC (buildkit.dockerfile.v0)

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

2025-04-24 02:05:14 UTC (buildkit.dockerfile.v0)

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

2025-04-24 02:05:14 UTC (buildkit.dockerfile.v0)

CMD ["./bin/kuiperd"]

Details
Created

2025-04-24 02:03:34 UTC

Size

84.3 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2025-04-24T01:10:00.952Z
  • org.opencontainers.image.description
    Lightweight data stream processing engine for IoT edge
  • org.opencontainers.image.licenses
    Apache-2.0
  • org.opencontainers.image.revision
    fb9359dcd4d0ab9f58a7cd1ee92b6ea23f9e919f
  • 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.2.0-alpha.3-slim-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:16c9c4a8e9eef856231273efbb42a473740e8d50d74d35e6aedd04ff69fe161f - 31.76% (26.8 MB)

[#001] sha256:a7d9a0ac6293889b2e134861072f9099a06d78ca983d7172d7bb8b236008c7c3 - 3.77% (3.18 MB)

[#002] sha256:426290db15737ca92fe1ee6ff4f450dd43dfc093e928047857d8925dd27b11d7 - 15.36% (12.9 MB)

[#003] sha256:e8b685ab0b21e0c114aa94b28237721d66087c2bb5393296b8b44b3e13676ebe - 0.0% (251 Bytes)

[#004] sha256:662d05a102b399c06c61145448fd3a145a3217155e0c89323e16638c1897914b - 41.14% (34.7 MB)

[#005] sha256:b2c382dbbd57e9812887dc47076aa845a00300153123965e7c01371aaab1e591 - 7.96% (6.71 MB)

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

[#007] sha256:502773515a54e3266da5cf516740e0b0dfce2270301fb429e1d24cfa6787f996 - 0.0% (633 Bytes)


History
2025-04-07 00:00:00 UTC (debuerreotype 0.15)

# debian.sh --arch 'arm64' out/ 'bookworm' '@1743984000'

2025-04-08 19:02:43 UTC (buildkit.dockerfile.v0)

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

2025-04-08 19:02:43 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2025-04-08 19:02:43 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

2025-04-08 19:02:43 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305

2025-04-08 19:02:43 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.12.10

2025-04-08 19:02:43 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SHA256=07ab697474595e06f06647417d3c7fa97ded07afc1a7e4454c5639919b46eaea

2025-04-08 19:02:43 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 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"; 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-optimizations --enable-option-checking=fatal --enable-shared --with-lto --with-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="$(dpkg-buildflags --get CFLAGS)"; LDFLAGS="$(dpkg-buildflags --get LDFLAGS)"; LDFLAGS="${LDFLAGS:--Wl},--strip-all"; arch="$(dpkg --print-architecture)"; arch="${arch##*-}"; case "$arch" in amd64|arm64) EXTRA_CFLAGS="${EXTRA_CFLAGS:-} -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer"; ;; i386) ;; *) 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 '{}' + ; 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/*; export PYTHONDONTWRITEBYTECODE=1; python3 --version; pip3 --version # buildkit

2025-04-08 19:02:43 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-04-08 19:02:43 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2025-04-24 02:03:33 UTC (buildkit.dockerfile.v0)

COPY /go/kuiper/_build/kuiper-* /kuiper/ # buildkit

2025-04-24 02:03:34 UTC (buildkit.dockerfile.v0)

COPY /usr/local/lib/python3.12/site-packages /usr/local/lib/python3.12/site-packages # buildkit

2025-04-24 02:03:34 UTC (buildkit.dockerfile.v0)

WORKDIR /kuiper

2025-04-24 02:03:34 UTC (buildkit.dockerfile.v0)

COPY ./deploy/docker/docker-entrypoint.sh /usr/bin/docker-entrypoint.sh # buildkit

2025-04-24 02:03:34 UTC (buildkit.dockerfile.v0)

ENV MAINTAINER=emqx.io

2025-04-24 02:03:34 UTC (buildkit.dockerfile.v0)

ENV KUIPER_HOME=/kuiper

2025-04-24 02:03:34 UTC (buildkit.dockerfile.v0)

ENV KUIPER__BASIC__CONSOLELOG=true

2025-04-24 02:03:34 UTC (buildkit.dockerfile.v0)

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

2025-04-24 02:03:34 UTC (buildkit.dockerfile.v0)

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

2025-04-24 02:03:34 UTC (buildkit.dockerfile.v0)

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

2025-04-24 02:03:34 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