Namespace
lfedge
Image / Tag
ekuiper:2.0.4-alpine-python
Content Digest
sha256:4589f0e3ff87cf164140eacd8286722067b2508939a05eed647c3a6548b9559d
Details
Created

2024-12-09 10:08:00 UTC

Size

53.5 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2024-12-09T10:03:41.652Z
  • org.opencontainers.image.description
    Lightweight data stream processing engine for IoT edge
  • org.opencontainers.image.licenses
    Apache-2.0
  • org.opencontainers.image.revision
    85af151beee5228481db66ec3f1b7201eba73cad
  • 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.0.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

c909157bb25ec114e5869124cc2a9c4a4d4c1e957ca4ff553f1edc692101154e

PYTHON_VERSION

3.12.8


Layers

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

[#001] sha256:538f63ad95044c1248ceef512fb04ba471c1e1ad6b51ac7b0b944049998696d7 - 0.81% (444 KB)

[#002] sha256:d15d7ccb6649f5c4c46a1d0a0ffe2ba135f1f888ac9a7fd46952a3815fe4cb93 - 28.43% (15.2 MB)

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

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

[#005] sha256:e906cdf2beafcba9b4f537448577beae1bb0b486189d5fbaff2a28dcf6a13ed6 - 0.0% (996 Bytes)

[#006] sha256:852a6a090ea361bef565fd4f719a697715575587ce4df26f6d78211b31dceb3a - 0.0% (634 Bytes)

[#007] sha256:3ca421bcfcc746466d8f1a3ea1577ecc92f3ca8f7614612c8089e3cc435a98d3 - 64.29% (34.4 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-12-04 00:36:05 UTC (buildkit.dockerfile.v0)

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

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

ENV LANG=C.UTF-8

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

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

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

ENV GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305

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

ENV PYTHON_VERSION=3.12.8

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

ENV PYTHON_SHA256=c909157bb25ec114e5869124cc2a9c4a4d4c1e957ca4ff553f1edc692101154e

2024-12-04 00:36:05 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-04 00:36:05 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-04 00:36:05 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2024-12-09 10:03:49 UTC (buildkit.dockerfile.v0)

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

2024-12-09 10:03:49 UTC (buildkit.dockerfile.v0)

ARG KUIPER_USER=kuiper

2024-12-09 10:03:49 UTC (buildkit.dockerfile.v0)

ARG KUIPER_USER_ID=1001

2024-12-09 10:03:49 UTC (buildkit.dockerfile.v0)

WORKDIR /kuiper

2024-12-09 10:03:49 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-09 10:03:49 UTC (buildkit.dockerfile.v0)

USER kuiper

2024-12-09 10:03:53 UTC (buildkit.dockerfile.v0)

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

2024-12-09 10:08:00 UTC (buildkit.dockerfile.v0)

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

2024-12-09 10:08:00 UTC (buildkit.dockerfile.v0)

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

2024-12-09 10:08:00 UTC (buildkit.dockerfile.v0)

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

2024-12-09 10:08:00 UTC (buildkit.dockerfile.v0)

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

2024-12-09 10:08:00 UTC (buildkit.dockerfile.v0)

CMD ["./bin/kuiperd"]

Details
Created

2024-12-09 10:42:47 UTC

Size

49.4 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2024-12-09T10:03:41.652Z
  • org.opencontainers.image.description
    Lightweight data stream processing engine for IoT edge
  • org.opencontainers.image.licenses
    Apache-2.0
  • org.opencontainers.image.revision
    85af151beee5228481db66ec3f1b7201eba73cad
  • 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.0.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

c909157bb25ec114e5869124cc2a9c4a4d4c1e957ca4ff553f1edc692101154e

PYTHON_VERSION

3.12.8


Layers

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

[#001] sha256:b6a7b3f0e95844a9d728ec36cd0a6d3a25cde46780e99640722e89eb89868dde - 0.88% (444 KB)

[#002] sha256:726f57af11edb897b55f3b3cf03be12eaede2536e4c5acc2fa03235ec60c46e2 - 28.16% (13.9 MB)

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

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

[#005] sha256:e27879b2b69af00352d1082711fac19d2b997b9cd23c922b3181d5e78e1f9da3 - 0.0% (1002 Bytes)

[#006] sha256:1ea4f600ee3161a2660a8e0159a98326d44e7d8959ba4499c5753bc971c9a8fc - 0.0% (634 Bytes)

[#007] sha256:cb3928cecfadbefcd196c48feba2fba9c94a4ce028f55eabb2d3ab48f1f7b2aa - 64.98% (32.1 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-12-04 00:36:05 UTC (buildkit.dockerfile.v0)

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

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

ENV LANG=C.UTF-8

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

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

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

ENV GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305

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

ENV PYTHON_VERSION=3.12.8

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

ENV PYTHON_SHA256=c909157bb25ec114e5869124cc2a9c4a4d4c1e957ca4ff553f1edc692101154e

2024-12-04 00:36:05 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-04 00:36:05 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-04 00:36:05 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2024-12-09 10:03:49 UTC (buildkit.dockerfile.v0)

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

2024-12-09 10:03:49 UTC (buildkit.dockerfile.v0)

ARG KUIPER_USER=kuiper

2024-12-09 10:03:49 UTC (buildkit.dockerfile.v0)

ARG KUIPER_USER_ID=1001

2024-12-09 10:03:49 UTC (buildkit.dockerfile.v0)

WORKDIR /kuiper

2024-12-09 10:03:50 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-09 10:03:50 UTC (buildkit.dockerfile.v0)

USER kuiper

2024-12-09 10:03:53 UTC (buildkit.dockerfile.v0)

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

2024-12-09 10:42:47 UTC (buildkit.dockerfile.v0)

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

2024-12-09 10:42:47 UTC (buildkit.dockerfile.v0)

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

2024-12-09 10:42:47 UTC (buildkit.dockerfile.v0)

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

2024-12-09 10:42:47 UTC (buildkit.dockerfile.v0)

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

2024-12-09 10:42:47 UTC (buildkit.dockerfile.v0)

CMD ["./bin/kuiperd"]

Details
Created

2024-12-09 10:40:04 UTC

Size

51.4 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2024-12-09T10:03:41.652Z
  • org.opencontainers.image.description
    Lightweight data stream processing engine for IoT edge
  • org.opencontainers.image.licenses
    Apache-2.0
  • org.opencontainers.image.revision
    85af151beee5228481db66ec3f1b7201eba73cad
  • 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.0.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

c909157bb25ec114e5869124cc2a9c4a4d4c1e957ca4ff553f1edc692101154e

PYTHON_VERSION

3.12.8


Layers

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

[#001] sha256:de61e223e3d6667838145ce293b86882fe701b04ea3217154c9de4814e37e838 - 0.85% (447 KB)

[#002] sha256:ef13442fd552f1aad03f22d18a0bc51bdda770a98935cf57802cc14b624ea45b - 30.5% (15.7 MB)

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

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

[#005] sha256:5b33f7b56f777e68d71a189e789dc5bf1279cfc3722926053a0e8a09eefadff3 - 0.0% (1002 Bytes)

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

[#007] sha256:a73165c8c08cba67cb73a245633d0803b09dbd29f384fce7745c125f96af2ce7 - 61.07% (31.4 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-12-04 00:36:05 UTC (buildkit.dockerfile.v0)

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

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

ENV LANG=C.UTF-8

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

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

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

ENV GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305

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

ENV PYTHON_VERSION=3.12.8

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

ENV PYTHON_SHA256=c909157bb25ec114e5869124cc2a9c4a4d4c1e957ca4ff553f1edc692101154e

2024-12-04 00:36:05 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-04 00:36:05 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-04 00:36:05 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2024-12-09 10:03:49 UTC (buildkit.dockerfile.v0)

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

2024-12-09 10:03:49 UTC (buildkit.dockerfile.v0)

ARG KUIPER_USER=kuiper

2024-12-09 10:03:49 UTC (buildkit.dockerfile.v0)

ARG KUIPER_USER_ID=1001

2024-12-09 10:03:49 UTC (buildkit.dockerfile.v0)

WORKDIR /kuiper

2024-12-09 10:03:50 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-09 10:03:50 UTC (buildkit.dockerfile.v0)

USER kuiper

2024-12-09 10:03:53 UTC (buildkit.dockerfile.v0)

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

2024-12-09 10:40:04 UTC (buildkit.dockerfile.v0)

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

2024-12-09 10:40:04 UTC (buildkit.dockerfile.v0)

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

2024-12-09 10:40:04 UTC (buildkit.dockerfile.v0)

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

2024-12-09 10:40:04 UTC (buildkit.dockerfile.v0)

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

2024-12-09 10:40: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