Namespace
lfedge
Image / Tag
ekuiper:v1.14.7-alpine-python
Content Digest
sha256:31d6707570859e2f85a026617542cb58d1c59a9b96aacfa870e04a3970c9bf71
Details
Created

2024-12-17 08:27:22 UTC

Size

51.1 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2024-12-17T08:23:04.884Z
  • org.opencontainers.image.description
    Lightweight data stream processing engine for IoT edge
  • org.opencontainers.image.licenses
    Apache-2.0
  • org.opencontainers.image.revision
    df82939f0b42b49633c605c2b918f25fe4ae03da
  • 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
    1.14.7-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

c909157bb25ec114e5869124cc2a9c4a4d4c1e957ca4ff553f1edc692101154e

PYTHON_VERSION

3.12.8


Layers

[#000] sha256:38a8310d387e375e0ec6fabe047a9149e8eb214073db9f461fee6251fd936a75 - 6.8% (3.48 MB)

[#001] sha256:033dc6728e5aa51c1efeee77c3ff435d24c4ea9aad55cbed1100f074e4202026 - 0.86% (451 KB)

[#002] sha256:73310cc3047080fb38a2006291d68e3fee5b54bc0e4ae855730c940ab9555a46 - 25.37% (13 MB)

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

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

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

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

[#007] sha256:7f5c36e21383e82644d273c9a94a2b5e1c6cf513bee07566b0efe384d3711497 - 66.96% (34.2 MB)


History
2024-12-05 12:49:04 UTC (buildkit.dockerfile.v0)

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

2024-12-05 12:49:04 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2024-12-05 13:19:52 UTC (buildkit.dockerfile.v0)

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

2024-12-05 13:19:52 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2024-12-05 13:19:52 UTC (buildkit.dockerfile.v0)

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

2024-12-05 13:19:52 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305

2024-12-05 13:19:52 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.12.8

2024-12-05 13:19:52 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SHA256=c909157bb25ec114e5869124cc2a9c4a4d4c1e957ca4ff553f1edc692101154e

2024-12-05 13:19:52 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-12-05 13:19:52 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-12-05 13:19:52 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2024-12-17 08:23:13 UTC (buildkit.dockerfile.v0)

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

2024-12-17 08:23:13 UTC (buildkit.dockerfile.v0)

ARG KUIPER_USER=kuiper

2024-12-17 08:23:13 UTC (buildkit.dockerfile.v0)

ARG KUIPER_USER_ID=1001

2024-12-17 08:23:13 UTC (buildkit.dockerfile.v0)

WORKDIR /kuiper

2024-12-17 08:23:14 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-12-17 08:23:14 UTC (buildkit.dockerfile.v0)

USER kuiper

2024-12-17 08:23:14 UTC (buildkit.dockerfile.v0)

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

2024-12-17 08:27:22 UTC (buildkit.dockerfile.v0)

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

2024-12-17 08:27:22 UTC (buildkit.dockerfile.v0)

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

2024-12-17 08:27:22 UTC (buildkit.dockerfile.v0)

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

2024-12-17 08:27:22 UTC (buildkit.dockerfile.v0)

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

2024-12-17 08:27:22 UTC (buildkit.dockerfile.v0)

CMD ["./bin/kuiperd"]

Details
Created

2024-12-17 09:00:47 UTC

Size

47.5 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2024-12-17T08:23:04.884Z
  • org.opencontainers.image.description
    Lightweight data stream processing engine for IoT edge
  • org.opencontainers.image.licenses
    Apache-2.0
  • org.opencontainers.image.revision
    df82939f0b42b49633c605c2b918f25fe4ae03da
  • 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
    1.14.7-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

c909157bb25ec114e5869124cc2a9c4a4d4c1e957ca4ff553f1edc692101154e

PYTHON_VERSION

3.12.8


Layers

[#000] sha256:39ad020c297459aff9281e5c635286218011e335f3460834ae8397a771bfec55 - 6.23% (2.96 MB)

[#001] sha256:89ec533c31bec55933e3080b0464937b4924f5276bf5d19579a5b0010c36a6d5 - 0.93% (451 KB)

[#002] sha256:b23fc81fa0159d833515d718325e4f5985e692ece924a48ff5132bd68fa403e8 - 25.53% (12.1 MB)

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

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

[#005] sha256:449f71f9b0881b6fa41ce915dbead3c301717306225bead6fd0594fe4e8cfb8e - 0.0% (1006 Bytes)

[#006] sha256:5d97e1b87a85fff9007971b4e309f951c1a4c56405b2d19ece04802499572961 - 0.0% (635 Bytes)

[#007] sha256:39243d21c31ffca83bf39cd66543bff23734ccc22b7881ab53d4452831072ae4 - 67.31% (32 MB)


History
2024-12-05 12:49:04 UTC (buildkit.dockerfile.v0)

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

2024-12-05 12:49:04 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2024-12-05 13:19:52 UTC (buildkit.dockerfile.v0)

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

2024-12-05 13:19:52 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2024-12-05 13:19:52 UTC (buildkit.dockerfile.v0)

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

2024-12-05 13:19:52 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305

2024-12-05 13:19:52 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.12.8

2024-12-05 13:19:52 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SHA256=c909157bb25ec114e5869124cc2a9c4a4d4c1e957ca4ff553f1edc692101154e

2024-12-05 13:19:52 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-12-05 13:19:52 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-12-05 13:19:52 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2024-12-17 08:23:12 UTC (buildkit.dockerfile.v0)

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

2024-12-17 08:23:12 UTC (buildkit.dockerfile.v0)

ARG KUIPER_USER=kuiper

2024-12-17 08:23:12 UTC (buildkit.dockerfile.v0)

ARG KUIPER_USER_ID=1001

2024-12-17 08:23:12 UTC (buildkit.dockerfile.v0)

WORKDIR /kuiper

2024-12-17 08:23:14 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-12-17 08:23:14 UTC (buildkit.dockerfile.v0)

USER kuiper

2024-12-17 08:23:14 UTC (buildkit.dockerfile.v0)

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

2024-12-17 09:00:47 UTC (buildkit.dockerfile.v0)

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

2024-12-17 09:00:47 UTC (buildkit.dockerfile.v0)

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

2024-12-17 09:00:47 UTC (buildkit.dockerfile.v0)

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

2024-12-17 09:00:47 UTC (buildkit.dockerfile.v0)

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

2024-12-17 09:00:47 UTC (buildkit.dockerfile.v0)

CMD ["./bin/kuiperd"]

Details
Created

2024-12-17 08:58:20 UTC

Size

48.5 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2024-12-17T08:23:04.884Z
  • org.opencontainers.image.description
    Lightweight data stream processing engine for IoT edge
  • org.opencontainers.image.licenses
    Apache-2.0
  • org.opencontainers.image.revision
    df82939f0b42b49633c605c2b918f25fe4ae03da
  • 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
    1.14.7-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

c909157bb25ec114e5869124cc2a9c4a4d4c1e957ca4ff553f1edc692101154e

PYTHON_VERSION

3.12.8


Layers

[#000] sha256:cb8611c9fe5154550f45e284cf977cda4e2b2fee3478552eee31d84be3c95003 - 7.85% (3.81 MB)

[#001] sha256:52e189a1282f54a74c15169c13fb587c16981e2a6bee34e159746d90b8d2b63d - 0.91% (454 KB)

[#002] sha256:95e68cb0cebc695330b393c4538ecc0c73f6dbb5b9bbf0e12e44d9f422433bae - 26.83% (13 MB)

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

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

[#005] sha256:d282ec0dc87f2d09e4d2a3376906c5c262d123a743497c3a2fd927784e28d2dd - 0.0% (1006 Bytes)

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

[#007] sha256:5c1561c4f0f38932363a27ad49aa2431897d1e1762b12a4a8a417b800b48e127 - 64.4% (31.2 MB)


History
2024-12-05 12:49:04 UTC (buildkit.dockerfile.v0)

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

2024-12-05 12:49:04 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2024-12-05 13:19:52 UTC (buildkit.dockerfile.v0)

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

2024-12-05 13:19:52 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2024-12-05 13:19:52 UTC (buildkit.dockerfile.v0)

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

2024-12-05 13:19:52 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305

2024-12-05 13:19:52 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.12.8

2024-12-05 13:19:52 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SHA256=c909157bb25ec114e5869124cc2a9c4a4d4c1e957ca4ff553f1edc692101154e

2024-12-05 13:19:52 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-12-05 13:19:52 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-12-05 13:19:52 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2024-12-17 08:23:13 UTC (buildkit.dockerfile.v0)

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

2024-12-17 08:23:13 UTC (buildkit.dockerfile.v0)

ARG KUIPER_USER=kuiper

2024-12-17 08:23:13 UTC (buildkit.dockerfile.v0)

ARG KUIPER_USER_ID=1001

2024-12-17 08:23:13 UTC (buildkit.dockerfile.v0)

WORKDIR /kuiper

2024-12-17 08:23:14 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-12-17 08:23:14 UTC (buildkit.dockerfile.v0)

USER kuiper

2024-12-17 08:23:14 UTC (buildkit.dockerfile.v0)

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

2024-12-17 08:58:20 UTC (buildkit.dockerfile.v0)

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

2024-12-17 08:58:20 UTC (buildkit.dockerfile.v0)

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

2024-12-17 08:58:20 UTC (buildkit.dockerfile.v0)

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

2024-12-17 08:58:20 UTC (buildkit.dockerfile.v0)

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

2024-12-17 08:58:20 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