Namespace
lfedge
Image / Tag
ekuiper:v2.0.0-dft.1-alpine-python
Content Digest
sha256:2e6ca16324afed2edb2fb22da482ce7353f9e6b9656a3e081da3e3a620950af6
Details
Created

2024-11-21 06:23:53 UTC

Size

64.2 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2024-11-21T06:14:20.070Z
  • org.opencontainers.image.description
  • org.opencontainers.image.licenses
  • org.opencontainers.image.revision
    880b58cc65de8f5ce392ece10288289f30d63f57
  • org.opencontainers.image.source
    https://github.com/emqx/ekuiper
  • org.opencontainers.image.title
    ekuiper
  • org.opencontainers.image.url
    https://github.com/emqx/ekuiper
  • org.opencontainers.image.version
    2.0.0-dft.1-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

24887b92e2afd4a2ac602419ad4b596372f67ac9b077190f459aba390faf5550

PYTHON_VERSION

3.12.7


Layers

[#000] sha256:da9db072f522755cbeb85be2b3f84059b70571b229512f1571d9217b77e1087f - 5.38% (3.46 MB)

[#001] sha256:bd7075f7f3e1a79ada63a385711a2d1612dfb50c303d9ea408ed873bf0088c26 - 0.68% (444 KB)

[#002] sha256:7d54e5997a4f9c108bc9a7b4a1324669b3c07252c9063b9f2c791302595027b6 - 23.66% (15.2 MB)

[#003] sha256:2e760e98e4afb4f520dc44c53b69e936ace069498c23462f174e684d7049734b - 0.0% (255 Bytes)

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

[#005] sha256:ae8cbb224dafe9c0ca70967c04f7202cd9197db3927100b5f25838044effabd4 - 0.0% (1005 Bytes)

[#006] sha256:1f0a935f299161be2e009962788ee8d5beb03605e94c9a6a707b2458e529f228 - 0.0% (635 Bytes)

[#007] sha256:e772bf07d5e0e36019d6081ff7f1679d977aeec074435bd2a10e0fa7c7be6441 - 70.27% (45.1 MB)


History
2024-09-06 12:05:36 UTC (buildkit.dockerfile.v0)

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

2024-09-06 12:05:36 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2024-10-18 23:23:40 UTC (buildkit.dockerfile.v0)

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

2024-10-18 23:23:40 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2024-10-18 23:23:40 UTC (buildkit.dockerfile.v0)

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

2024-10-18 23:23:40 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305

2024-10-18 23:23:40 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.12.7

2024-10-18 23:23:40 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SHA256=24887b92e2afd4a2ac602419ad4b596372f67ac9b077190f459aba390faf5550

2024-10-18 23:23:40 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 --with-lto --with-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000"; LDFLAGS="${LDFLAGS:--Wl},--strip-all"; 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

2024-10-18 23:23:40 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

2024-10-18 23:23:40 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2024-11-21 06:14:34 UTC (buildkit.dockerfile.v0)

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

2024-11-21 06:14:34 UTC (buildkit.dockerfile.v0)

ARG KUIPER_USER=kuiper

2024-11-21 06:14:34 UTC (buildkit.dockerfile.v0)

ARG KUIPER_USER_ID=1001

2024-11-21 06:14:34 UTC (buildkit.dockerfile.v0)

WORKDIR /kuiper

2024-11-21 06:14:35 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

2024-11-21 06:14:35 UTC (buildkit.dockerfile.v0)

USER kuiper

2024-11-21 06:14:40 UTC (buildkit.dockerfile.v0)

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

2024-11-21 06:23:53 UTC (buildkit.dockerfile.v0)

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

2024-11-21 06:23:53 UTC (buildkit.dockerfile.v0)

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

2024-11-21 06:23:53 UTC (buildkit.dockerfile.v0)

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

2024-11-21 06:23:53 UTC (buildkit.dockerfile.v0)

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

2024-11-21 06:23:53 UTC (buildkit.dockerfile.v0)

CMD ["./bin/kuiperd"]

Details
Created

2024-11-21 07:32:29 UTC

Size

60.1 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2024-11-21T06:14:20.070Z
  • org.opencontainers.image.description
  • org.opencontainers.image.licenses
  • org.opencontainers.image.revision
    880b58cc65de8f5ce392ece10288289f30d63f57
  • org.opencontainers.image.source
    https://github.com/emqx/ekuiper
  • org.opencontainers.image.title
    ekuiper
  • org.opencontainers.image.url
    https://github.com/emqx/ekuiper
  • org.opencontainers.image.version
    2.0.0-dft.1-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

24887b92e2afd4a2ac602419ad4b596372f67ac9b077190f459aba390faf5550

PYTHON_VERSION

3.12.7


Layers

[#000] sha256:2723bbe95689a46bd4cbe83e27fb42475660f41b02c96d21411fa76d803e8553 - 4.91% (2.95 MB)

[#001] sha256:2fad3f961136783cf2de14ce3dd7e6312a1ac3fc851d25bf4038b71518902dfe - 0.72% (445 KB)

[#002] sha256:6382df676aab2d17bf924c0133430740e4b1b2805ca42fcec9016662e7fd62b2 - 23.12% (13.9 MB)

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

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

[#005] sha256:d4c9dfb16294ddb27a3ad81a29b44aa1c3c6323aefc430f1821c18765475686d - 0.0% (1004 Bytes)

[#006] sha256:95f7e6166c2e101e37a7801f3b8458baaa61881cd9df0ef0b0dc28fdcf043f2f - 0.0% (633 Bytes)

[#007] sha256:1993b331412ea755a80ff34791638de5fd3018dc2c77dd57dd17350bb7b0d63b - 71.24% (42.8 MB)


History
2024-09-06 12:05:36 UTC (buildkit.dockerfile.v0)

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

2024-09-06 12:05:36 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2024-10-18 23:23:40 UTC (buildkit.dockerfile.v0)

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

2024-10-18 23:23:40 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2024-10-18 23:23:40 UTC (buildkit.dockerfile.v0)

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

2024-10-18 23:23:40 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305

2024-10-18 23:23:40 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.12.7

2024-10-18 23:23:40 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SHA256=24887b92e2afd4a2ac602419ad4b596372f67ac9b077190f459aba390faf5550

2024-10-18 23:23:40 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 --with-lto --with-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000"; LDFLAGS="${LDFLAGS:--Wl},--strip-all"; 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

2024-10-18 23:23:40 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

2024-10-18 23:23:40 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2024-11-21 06:14:33 UTC (buildkit.dockerfile.v0)

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

2024-11-21 06:14:33 UTC (buildkit.dockerfile.v0)

ARG KUIPER_USER=kuiper

2024-11-21 06:14:33 UTC (buildkit.dockerfile.v0)

ARG KUIPER_USER_ID=1001

2024-11-21 06:14:33 UTC (buildkit.dockerfile.v0)

WORKDIR /kuiper

2024-11-21 06:14:35 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

2024-11-21 06:14:35 UTC (buildkit.dockerfile.v0)

USER kuiper

2024-11-21 06:14:40 UTC (buildkit.dockerfile.v0)

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

2024-11-21 07:32:29 UTC (buildkit.dockerfile.v0)

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

2024-11-21 07:32:29 UTC (buildkit.dockerfile.v0)

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

2024-11-21 07:32:29 UTC (buildkit.dockerfile.v0)

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

2024-11-21 07:32:29 UTC (buildkit.dockerfile.v0)

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

2024-11-21 07:32:29 UTC (buildkit.dockerfile.v0)

CMD ["./bin/kuiperd"]

Details
Created

2024-11-21 07:27:01 UTC

Size

62.1 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2024-11-21T06:14:20.070Z
  • org.opencontainers.image.description
  • org.opencontainers.image.licenses
  • org.opencontainers.image.revision
    880b58cc65de8f5ce392ece10288289f30d63f57
  • org.opencontainers.image.source
    https://github.com/emqx/ekuiper
  • org.opencontainers.image.title
    ekuiper
  • org.opencontainers.image.url
    https://github.com/emqx/ekuiper
  • org.opencontainers.image.version
    2.0.0-dft.1-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

24887b92e2afd4a2ac602419ad4b596372f67ac9b077190f459aba390faf5550

PYTHON_VERSION

3.12.7


Layers

[#000] sha256:9986a736f7d3d24bb01b0a560fa0f19c4b57e56c646e1f998941529d28710e6b - 6.28% (3.9 MB)

[#001] sha256:a574989245bddbf29e2feae778e4eb8e31f8e868a104afa2fe661780ba1efedc - 0.7% (447 KB)

[#002] sha256:1b77694257d795c09eef3a0cac0ff01a697c38b95fb5b3bb8d603835cf7dd772 - 25.22% (15.7 MB)

[#003] sha256:975a56a2dc3954f19ffc9c2e5648c4321b2a0354772e8df3916597bb110bccfa - 0.0% (248 Bytes)

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

[#005] sha256:1f24d7e9385d6fdc892fc2843df0198b24f09b186b82287de803888714492460 - 0.0% (1003 Bytes)

[#006] sha256:200523c2bd8efffea89b5469e5928361bd773a8979782d1410787d43668f8278 - 0.0% (633 Bytes)

[#007] sha256:85649324418b9ddfee49ec0f9387a280b05aef0625713475e36cc1371b30de05 - 67.79% (42.1 MB)


History
2024-09-06 12:05:36 UTC (buildkit.dockerfile.v0)

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

2024-09-06 12:05:36 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2024-10-18 23:23:40 UTC (buildkit.dockerfile.v0)

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

2024-10-18 23:23:40 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2024-10-18 23:23:40 UTC (buildkit.dockerfile.v0)

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

2024-10-18 23:23:40 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305

2024-10-18 23:23:40 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.12.7

2024-10-18 23:23:40 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SHA256=24887b92e2afd4a2ac602419ad4b596372f67ac9b077190f459aba390faf5550

2024-10-18 23:23:40 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 --with-lto --with-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000"; LDFLAGS="${LDFLAGS:--Wl},--strip-all"; 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

2024-10-18 23:23:40 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

2024-10-18 23:23:40 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2024-11-21 06:14:34 UTC (buildkit.dockerfile.v0)

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

2024-11-21 06:14:34 UTC (buildkit.dockerfile.v0)

ARG KUIPER_USER=kuiper

2024-11-21 06:14:34 UTC (buildkit.dockerfile.v0)

ARG KUIPER_USER_ID=1001

2024-11-21 06:14:34 UTC (buildkit.dockerfile.v0)

WORKDIR /kuiper

2024-11-21 06:14:35 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

2024-11-21 06:14:35 UTC (buildkit.dockerfile.v0)

USER kuiper

2024-11-21 06:14:40 UTC (buildkit.dockerfile.v0)

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

2024-11-21 07:27:01 UTC (buildkit.dockerfile.v0)

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

2024-11-21 07:27:01 UTC (buildkit.dockerfile.v0)

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

2024-11-21 07:27:01 UTC (buildkit.dockerfile.v0)

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

2024-11-21 07:27:01 UTC (buildkit.dockerfile.v0)

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

2024-11-21 07:27:01 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