2023-07-19 13:22:44 UTC
88.2 MB
A035C8C19219BA821ECEA86B64E628F8D684696D
LANGC.UTF-8
NODE_PATH/usr/local/bin:/usr/local/pnpm-global/5/node_modules:/usr/local/lib/node_modules:/root/.local/share/pnpm/global/5/node_modules
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/.local/share/pnpm:/root/.local/share/pnpm/global/5/node_modules:
PNPM_HOME/root/.local/share/pnpm
PS1\u@\h:\w $
PYTHON_GET_PIP_SHA25696461deced5c2a487ddc65207ec5a9cffeca0d34e7af7ea1afc470ff0d746207
PYTHON_GET_PIP_URLhttps://github.com/pypa/get-pip/raw/0d8570dc44796f4369b652222cf176b3db6ac70e/public/get-pip.py
PYTHON_PIP_VERSION23.0.1
PYTHON_SETUPTOOLS_VERSION65.5.1
PYTHON_VERSION3.10.12
QL_BRANCHv2.15.18
QL_DIR/ql
SHELL/bin/bash
[#000] sha256:b3f50075abd13aad1cb7d8c1427aa59d7fcac88f3690d3f9c3efdbec80fd0856 - 3.5% (3.08 MB)
[#001] sha256:c544addd3fba841a57b055185086b8405cee42393e890b6e8ddf838ef68ea3c0 - 0.67% (608 KB)
[#002] sha256:d47d365ec031a4640684cf45f4cc53d9b74a7d20275de63fd2a05c0e91d4ec55 - 13.16% (11.6 MB)
[#003] sha256:a056b2a9235a0f817dd7930582300f991541c4d7ee3a453d67903c45d5ecbbfb - 0.0% (242 Bytes)
[#004] sha256:7f076d2585d91a3ac66c510d153ea06020d05b96fa14ef0f34c2bff62f67da0b - 3.33% (2.94 MB)
[#005] sha256:fef8012a58ef1813b6a13f6add85186765fa981a2eac937a3ba5c72f251bfee5 - 59.25% (52.2 MB)
[#006] sha256:3ee5170a78906b74c63a0884a5dd3d46db7a48f1b7ca82a1901051775958bd7c - 4.08% (3.6 MB)
[#007] sha256:b3bed218810b8b053f225debc233b7d005496da2889f6b61dea9187057147c16 - 16.0% (14.1 MB)
[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
/bin/sh -c #(nop) ADD file:94bec00e2c0c7f47c81ec4355a29ca23a81b439797d037b1a5a455f36a25dab4 in /
2023-06-14 22:33:22 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV LANG=C.UTF-8
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; apk add --no-cache ca-certificates tzdata ; # buildkit
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PYTHON_VERSION=3.10.12
2023-06-07 03:49:12 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 expat-dev 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"; 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-system-expat --without-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000"; LDFLAGS="${LDFLAGS:--Wl},--strip-all"; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:-}" "PROFILE_TASK=${PROFILE_TASK:-}" ; rm python; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:--Wl},-rpath='\$\$ORIGIN/../lib'" "PROFILE_TASK=${PROFILE_TASK:-}" 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; python3 --version # buildkit
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; for src in idle3 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
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PYTHON_PIP_VERSION=23.0.1
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PYTHON_SETUPTOOLS_VERSION=65.5.1
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/0d8570dc44796f4369b652222cf176b3db6ac70e/public/get-pip.py
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_SHA256=96461deced5c2a487ddc65207ec5a9cffeca0d34e7af7ea1afc470ff0d746207
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum -c -; export PYTHONDONTWRITEBYTECODE=1; python get-pip.py --disable-pip-version-check --no-cache-dir --no-compile "pip==$PYTHON_PIP_VERSION" "setuptools==$PYTHON_SETUPTOOLS_VERSION" ; rm -f get-pip.py; pip --version # buildkit
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)CMD ["python3"]
2023-07-19 13:22:40 UTC (buildkit.dockerfile.v0)ARG QL_MAINTAINER=whyour
2023-07-19 13:22:40 UTC (buildkit.dockerfile.v0)LABEL maintainer=whyour
2023-07-19 13:22:40 UTC (buildkit.dockerfile.v0)ARG QL_URL=https://github.com/whyour/qinglong.git
2023-07-19 13:22:40 UTC (buildkit.dockerfile.v0)ARG QL_BRANCH=develop
2023-07-19 13:22:40 UTC (buildkit.dockerfile.v0)ENV PNPM_HOME=/root/.local/share/pnpm PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/.local/share/pnpm:/root/.local/share/pnpm/global/5/node_modules: NODE_PATH=/usr/local/bin:/usr/local/pnpm-global/5/node_modules:/usr/local/lib/node_modules:/root/.local/share/pnpm/global/5/node_modules LANG=C.UTF-8 SHELL=/bin/bash PS1=\u@\h:\w $ QL_DIR=/ql QL_BRANCH=v2.15.18
2023-07-19 13:22:40 UTC (buildkit.dockerfile.v0)RUN |3 QL_MAINTAINER=whyour QL_URL=https://github.com/whyour/qinglong.git QL_BRANCH=v2.15.18 /bin/sh -c set -x && sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories && apk update -f && apk upgrade && apk --no-cache add -f bash coreutils git curl wget tzdata perl openssl nginx nodejs jq openssh procps netcat-openbsd npm && rm -rf /var/cache/apk/* && apk update && ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && echo "Asia/Shanghai" > /etc/timezone && git config --global user.email "qinglong@@users.noreply.github.com" && git config --global user.name "qinglong" && git config --global http.postBuffer 524288000 && npm install -g [email protected] && cd && pnpm config set registry https://registry.npmmirror.com && pnpm add -g pm2 tsx && rm -rf /root/.pnpm-store && rm -rf /root/.local/share/pnpm/store && rm -rf /root/.cache && rm -rf /root/.npm # buildkit
2023-07-19 13:22:40 UTC (buildkit.dockerfile.v0)ARG SOURCE_COMMIT
2023-07-19 13:22:43 UTC (buildkit.dockerfile.v0)RUN |4 QL_MAINTAINER=whyour QL_URL=https://github.com/whyour/qinglong.git QL_BRANCH=v2.15.18 SOURCE_COMMIT=56eb0c54089e4e6c9ca1c66a75aa044c7e466083 /bin/sh -c git clone --depth=1 -b ${QL_BRANCH} ${QL_URL} ${QL_DIR} && cd ${QL_DIR} && cp -f .env.example .env && chmod 777 ${QL_DIR}/shell/*.sh && chmod 777 ${QL_DIR}/docker/*.sh && git clone --depth=1 -b ${QL_BRANCH} https://github.com/${QL_MAINTAINER}/qinglong-static.git /static && mkdir -p ${QL_DIR}/static && cp -rf /static/* ${QL_DIR}/static && rm -rf /static # buildkit
2023-07-19 13:22:44 UTC (buildkit.dockerfile.v0)COPY /tmp/build/node_modules/. /ql/node_modules/ # buildkit
2023-07-19 13:22:44 UTC (buildkit.dockerfile.v0)WORKDIR /ql
2023-07-19 13:22:44 UTC (buildkit.dockerfile.v0)HEALTHCHECK &{["CMD-SHELL" "curl -sf http://127.0.0.1:5400/api/health || exit 1"] "5s" "2s" "0s" '\x14'}
2023-07-19 13:22:44 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["./docker/docker-entrypoint.sh"]
2023-07-19 13:21:54 UTC
88.8 MB
A035C8C19219BA821ECEA86B64E628F8D684696D
LANGC.UTF-8
NODE_PATH/usr/local/bin:/usr/local/pnpm-global/5/node_modules:/usr/local/lib/node_modules:/root/.local/share/pnpm/global/5/node_modules
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/.local/share/pnpm:/root/.local/share/pnpm/global/5/node_modules:
PNPM_HOME/root/.local/share/pnpm
PS1\u@\h:\w $
PYTHON_GET_PIP_SHA25696461deced5c2a487ddc65207ec5a9cffeca0d34e7af7ea1afc470ff0d746207
PYTHON_GET_PIP_URLhttps://github.com/pypa/get-pip/raw/0d8570dc44796f4369b652222cf176b3db6ac70e/public/get-pip.py
PYTHON_PIP_VERSION23.0.1
PYTHON_SETUPTOOLS_VERSION65.5.1
PYTHON_VERSION3.10.12
QL_BRANCHv2.15.18
QL_DIR/ql
SHELL/bin/bash
[#000] sha256:31e352740f534f9ad170f75378a84fe453d6156e40700b882d737a8f4a6988a3 - 3.65% (3.24 MB)
[#001] sha256:cfcc276e4459ecb909a4257fdf7647034eb3b2ab1f0d0c0bba54856c39079c50 - 0.67% (608 KB)
[#002] sha256:1208695d162607be1d7d8e3844372917cc8e5be9eb63df5c26a6beba08bd0571 - 12.94% (11.5 MB)
[#003] sha256:c530b758a3f19bc8cbb01ecba95ec418ddb181f34f97be9e5199d1d1246d4c55 - 0.0% (243 Bytes)
[#004] sha256:8fdb225981ed58de1d64997105f288c9087687ec2a3e233cf83e830e8b431dca - 3.31% (2.94 MB)
[#005] sha256:ae0fddf801793555e9c60e3c06eb12b0e619ff11cc6d60a7d11bc5cc27bbf7c3 - 59.49% (52.8 MB)
[#006] sha256:0e3ed02cf968f0a24987cac00766bee0caa5e42ad28c2e4d90f3e34f84b3dac2 - 4.05% (3.6 MB)
[#007] sha256:6234e7aee9b9a84d9f70d7ec7dfdff0a84db96539812deeb8393fdb810d1ee33 - 15.88% (14.1 MB)
[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
/bin/sh -c #(nop) ADD file:1da756d12551a0e3e793e02ef87432d69d4968937bd11bed0af215db19dd94cd in /
2023-06-14 20:41:59 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV LANG=C.UTF-8
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; apk add --no-cache ca-certificates tzdata ; # buildkit
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PYTHON_VERSION=3.10.12
2023-06-07 03:49:12 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 expat-dev 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"; 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-system-expat --without-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000"; LDFLAGS="${LDFLAGS:--Wl},--strip-all"; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:-}" "PROFILE_TASK=${PROFILE_TASK:-}" ; rm python; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:--Wl},-rpath='\$\$ORIGIN/../lib'" "PROFILE_TASK=${PROFILE_TASK:-}" 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; python3 --version # buildkit
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; for src in idle3 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
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PYTHON_PIP_VERSION=23.0.1
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PYTHON_SETUPTOOLS_VERSION=65.5.1
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/0d8570dc44796f4369b652222cf176b3db6ac70e/public/get-pip.py
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_SHA256=96461deced5c2a487ddc65207ec5a9cffeca0d34e7af7ea1afc470ff0d746207
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum -c -; export PYTHONDONTWRITEBYTECODE=1; python get-pip.py --disable-pip-version-check --no-cache-dir --no-compile "pip==$PYTHON_PIP_VERSION" "setuptools==$PYTHON_SETUPTOOLS_VERSION" ; rm -f get-pip.py; pip --version # buildkit
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)CMD ["python3"]
2023-07-19 13:21:51 UTC (buildkit.dockerfile.v0)ARG QL_MAINTAINER=whyour
2023-07-19 13:21:51 UTC (buildkit.dockerfile.v0)LABEL maintainer=whyour
2023-07-19 13:21:51 UTC (buildkit.dockerfile.v0)ARG QL_URL=https://github.com/whyour/qinglong.git
2023-07-19 13:21:51 UTC (buildkit.dockerfile.v0)ARG QL_BRANCH=develop
2023-07-19 13:21:51 UTC (buildkit.dockerfile.v0)ENV PNPM_HOME=/root/.local/share/pnpm PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/.local/share/pnpm:/root/.local/share/pnpm/global/5/node_modules: NODE_PATH=/usr/local/bin:/usr/local/pnpm-global/5/node_modules:/usr/local/lib/node_modules:/root/.local/share/pnpm/global/5/node_modules LANG=C.UTF-8 SHELL=/bin/bash PS1=\u@\h:\w $ QL_DIR=/ql QL_BRANCH=v2.15.18
2023-07-19 13:21:51 UTC (buildkit.dockerfile.v0)RUN |3 QL_MAINTAINER=whyour QL_URL=https://github.com/whyour/qinglong.git QL_BRANCH=v2.15.18 /bin/sh -c set -x && sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories && apk update -f && apk upgrade && apk --no-cache add -f bash coreutils git curl wget tzdata perl openssl nginx nodejs jq openssh procps netcat-openbsd npm && rm -rf /var/cache/apk/* && apk update && ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && echo "Asia/Shanghai" > /etc/timezone && git config --global user.email "qinglong@@users.noreply.github.com" && git config --global user.name "qinglong" && git config --global http.postBuffer 524288000 && npm install -g [email protected] && cd && pnpm config set registry https://registry.npmmirror.com && pnpm add -g pm2 tsx && rm -rf /root/.pnpm-store && rm -rf /root/.local/share/pnpm/store && rm -rf /root/.cache && rm -rf /root/.npm # buildkit
2023-07-19 13:21:51 UTC (buildkit.dockerfile.v0)ARG SOURCE_COMMIT
2023-07-19 13:21:53 UTC (buildkit.dockerfile.v0)RUN |4 QL_MAINTAINER=whyour QL_URL=https://github.com/whyour/qinglong.git QL_BRANCH=v2.15.18 SOURCE_COMMIT=56eb0c54089e4e6c9ca1c66a75aa044c7e466083 /bin/sh -c git clone --depth=1 -b ${QL_BRANCH} ${QL_URL} ${QL_DIR} && cd ${QL_DIR} && cp -f .env.example .env && chmod 777 ${QL_DIR}/shell/*.sh && chmod 777 ${QL_DIR}/docker/*.sh && git clone --depth=1 -b ${QL_BRANCH} https://github.com/${QL_MAINTAINER}/qinglong-static.git /static && mkdir -p ${QL_DIR}/static && cp -rf /static/* ${QL_DIR}/static && rm -rf /static # buildkit
2023-07-19 13:21:54 UTC (buildkit.dockerfile.v0)COPY /tmp/build/node_modules/. /ql/node_modules/ # buildkit
2023-07-19 13:21:54 UTC (buildkit.dockerfile.v0)WORKDIR /ql
2023-07-19 13:21:54 UTC (buildkit.dockerfile.v0)HEALTHCHECK &{["CMD-SHELL" "curl -sf http://127.0.0.1:5400/api/health || exit 1"] "5s" "2s" "0s" '\x14'}
2023-07-19 13:21:54 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["./docker/docker-entrypoint.sh"]
2023-07-19 13:27:56 UTC
86 MB
A035C8C19219BA821ECEA86B64E628F8D684696D
LANGC.UTF-8
NODE_PATH/usr/local/bin:/usr/local/pnpm-global/5/node_modules:/usr/local/lib/node_modules:/root/.local/share/pnpm/global/5/node_modules
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/.local/share/pnpm:/root/.local/share/pnpm/global/5/node_modules:
PNPM_HOME/root/.local/share/pnpm
PS1\u@\h:\w $
PYTHON_GET_PIP_SHA25696461deced5c2a487ddc65207ec5a9cffeca0d34e7af7ea1afc470ff0d746207
PYTHON_GET_PIP_URLhttps://github.com/pypa/get-pip/raw/0d8570dc44796f4369b652222cf176b3db6ac70e/public/get-pip.py
PYTHON_PIP_VERSION23.0.1
PYTHON_SETUPTOOLS_VERSION65.5.1
PYTHON_VERSION3.10.12
QL_BRANCHv2.15.18
QL_DIR/ql
SHELL/bin/bash
[#000] sha256:7836be94d3024e2042069c1095caba0b391f70c4b3d34a0475a503239d73dfba - 3.49% (3 MB)
[#001] sha256:ad17a126bbe4b40af160bba2c453c900d577a81b8f02728a9d413f881f516e20 - 0.69% (608 KB)
[#002] sha256:fa9f6ea28c914eee0bec23c831f0995c19b9f846ec4deeb2372023502e3ebe66 - 13.02% (11.2 MB)
[#003] sha256:81ddf3554031c17828ca76c6f16694706c6598072e8f52bdfdb3ca01f8dc6063 - 0.0% (240 Bytes)
[#004] sha256:d6a4d85d98e2ba28637b3445626e380f16726fadf454dc70327eba463e7171b0 - 3.42% (2.94 MB)
[#005] sha256:93cbafa61691ede6dc65cf33d2871711f6b107313fabc9698b5ff49a27cc3ce9 - 58.95% (50.7 MB)
[#006] sha256:6b7a94f1d84d66106dda32bc736ad40b3807c7d4cd46e392aa9cfce9749de3e2 - 4.18% (3.6 MB)
[#007] sha256:376cbb7504de48cce5c5edc22b62ebeb6a1e6d9443f8bd57ea944e88db5baf19 - 16.25% (14 MB)
[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
/bin/sh -c #(nop) ADD file:4213782693bf27a9a6de23bc924ef0c4fb6b2d56010fc07b25f81edeba83b0d4 in /
2023-06-14 18:49:20 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV LANG=C.UTF-8
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; apk add --no-cache ca-certificates tzdata ; # buildkit
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PYTHON_VERSION=3.10.12
2023-06-07 03:49:12 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 expat-dev 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"; 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-system-expat --without-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000"; LDFLAGS="${LDFLAGS:--Wl},--strip-all"; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:-}" "PROFILE_TASK=${PROFILE_TASK:-}" ; rm python; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:--Wl},-rpath='\$\$ORIGIN/../lib'" "PROFILE_TASK=${PROFILE_TASK:-}" 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; python3 --version # buildkit
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; for src in idle3 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
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PYTHON_PIP_VERSION=23.0.1
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PYTHON_SETUPTOOLS_VERSION=65.5.1
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/0d8570dc44796f4369b652222cf176b3db6ac70e/public/get-pip.py
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_SHA256=96461deced5c2a487ddc65207ec5a9cffeca0d34e7af7ea1afc470ff0d746207
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum -c -; export PYTHONDONTWRITEBYTECODE=1; python get-pip.py --disable-pip-version-check --no-cache-dir --no-compile "pip==$PYTHON_PIP_VERSION" "setuptools==$PYTHON_SETUPTOOLS_VERSION" ; rm -f get-pip.py; pip --version # buildkit
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)CMD ["python3"]
2023-07-19 13:27:46 UTC (buildkit.dockerfile.v0)ARG QL_MAINTAINER=whyour
2023-07-19 13:27:46 UTC (buildkit.dockerfile.v0)LABEL maintainer=whyour
2023-07-19 13:27:46 UTC (buildkit.dockerfile.v0)ARG QL_URL=https://github.com/whyour/qinglong.git
2023-07-19 13:27:46 UTC (buildkit.dockerfile.v0)ARG QL_BRANCH=develop
2023-07-19 13:27:46 UTC (buildkit.dockerfile.v0)ENV PNPM_HOME=/root/.local/share/pnpm PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/.local/share/pnpm:/root/.local/share/pnpm/global/5/node_modules: NODE_PATH=/usr/local/bin:/usr/local/pnpm-global/5/node_modules:/usr/local/lib/node_modules:/root/.local/share/pnpm/global/5/node_modules LANG=C.UTF-8 SHELL=/bin/bash PS1=\u@\h:\w $ QL_DIR=/ql QL_BRANCH=v2.15.18
2023-07-19 13:27:46 UTC (buildkit.dockerfile.v0)RUN |3 QL_MAINTAINER=whyour QL_URL=https://github.com/whyour/qinglong.git QL_BRANCH=v2.15.18 /bin/sh -c set -x && sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories && apk update -f && apk upgrade && apk --no-cache add -f bash coreutils git curl wget tzdata perl openssl nginx nodejs jq openssh procps netcat-openbsd npm && rm -rf /var/cache/apk/* && apk update && ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && echo "Asia/Shanghai" > /etc/timezone && git config --global user.email "qinglong@@users.noreply.github.com" && git config --global user.name "qinglong" && git config --global http.postBuffer 524288000 && npm install -g [email protected] && cd && pnpm config set registry https://registry.npmmirror.com && pnpm add -g pm2 tsx && rm -rf /root/.pnpm-store && rm -rf /root/.local/share/pnpm/store && rm -rf /root/.cache && rm -rf /root/.npm # buildkit
2023-07-19 13:27:46 UTC (buildkit.dockerfile.v0)ARG SOURCE_COMMIT
2023-07-19 13:27:53 UTC (buildkit.dockerfile.v0)RUN |4 QL_MAINTAINER=whyour QL_URL=https://github.com/whyour/qinglong.git QL_BRANCH=v2.15.18 SOURCE_COMMIT=56eb0c54089e4e6c9ca1c66a75aa044c7e466083 /bin/sh -c git clone --depth=1 -b ${QL_BRANCH} ${QL_URL} ${QL_DIR} && cd ${QL_DIR} && cp -f .env.example .env && chmod 777 ${QL_DIR}/shell/*.sh && chmod 777 ${QL_DIR}/docker/*.sh && git clone --depth=1 -b ${QL_BRANCH} https://github.com/${QL_MAINTAINER}/qinglong-static.git /static && mkdir -p ${QL_DIR}/static && cp -rf /static/* ${QL_DIR}/static && rm -rf /static # buildkit
2023-07-19 13:27:56 UTC (buildkit.dockerfile.v0)COPY /tmp/build/node_modules/. /ql/node_modules/ # buildkit
2023-07-19 13:27:56 UTC (buildkit.dockerfile.v0)WORKDIR /ql
2023-07-19 13:27:56 UTC (buildkit.dockerfile.v0)HEALTHCHECK &{["CMD-SHELL" "curl -sf http://127.0.0.1:5400/api/health || exit 1"] "5s" "2s" "0s" '\x14'}
2023-07-19 13:27:56 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["./docker/docker-entrypoint.sh"]
2023-07-19 13:27:16 UTC
84.1 MB
A035C8C19219BA821ECEA86B64E628F8D684696D
LANGC.UTF-8
NODE_PATH/usr/local/bin:/usr/local/pnpm-global/5/node_modules:/usr/local/lib/node_modules:/root/.local/share/pnpm/global/5/node_modules
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/.local/share/pnpm:/root/.local/share/pnpm/global/5/node_modules:
PNPM_HOME/root/.local/share/pnpm
PS1\u@\h:\w $
PYTHON_GET_PIP_SHA25696461deced5c2a487ddc65207ec5a9cffeca0d34e7af7ea1afc470ff0d746207
PYTHON_GET_PIP_URLhttps://github.com/pypa/get-pip/raw/0d8570dc44796f4369b652222cf176b3db6ac70e/public/get-pip.py
PYTHON_PIP_VERSION23.0.1
PYTHON_SETUPTOOLS_VERSION65.5.1
PYTHON_VERSION3.10.12
QL_BRANCHv2.15.18
QL_DIR/ql
SHELL/bin/bash
[#000] sha256:633ba29fd335042456b6e2c073636f6fa30de56f1331c442914739b92a479974 - 3.29% (2.76 MB)
[#001] sha256:1236e9bf79acbf88e15dcaae128ebaf83d42568946907850955a6b758231acc3 - 0.71% (607 KB)
[#002] sha256:7fbdde676e3feacce6fa851256b1c686302870b25e3046b4cda73470341f7fb9 - 12.79% (10.8 MB)
[#003] sha256:d20359761b99a9b8ca0aa6e49e6a5ebb2afdaa26bd813c5855a5cd100367ee9e - 0.0% (240 Bytes)
[#004] sha256:952f0aa3a3458a9764847c257a30239d349daf74974307382e367148f6512e5b - 3.49% (2.94 MB)
[#005] sha256:4a4af5f6de33bd981e9d1c00fe781e33b7760f289cfdc601d66396e9b160d882 - 58.83% (49.5 MB)
[#006] sha256:9920e63a1405293823c2c0bd2e25cf574feae799569c8877723793fd44d12540 - 4.28% (3.6 MB)
[#007] sha256:ecd138b4766f728ce77a18930be837de83a7a6a13e7a5951de986de1bd6e0de5 - 16.62% (14 MB)
[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
/bin/sh -c #(nop) ADD file:082f034323c559f3cb9feb6422c88b1ec8017f436d6109e238a5c5384a32a90a in /
2023-06-14 22:36:15 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV LANG=C.UTF-8
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; apk add --no-cache ca-certificates tzdata ; # buildkit
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PYTHON_VERSION=3.10.12
2023-06-07 03:49:12 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 expat-dev 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"; 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-system-expat --without-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000"; LDFLAGS="${LDFLAGS:--Wl},--strip-all"; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:-}" "PROFILE_TASK=${PROFILE_TASK:-}" ; rm python; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:--Wl},-rpath='\$\$ORIGIN/../lib'" "PROFILE_TASK=${PROFILE_TASK:-}" 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; python3 --version # buildkit
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; for src in idle3 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
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PYTHON_PIP_VERSION=23.0.1
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PYTHON_SETUPTOOLS_VERSION=65.5.1
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/0d8570dc44796f4369b652222cf176b3db6ac70e/public/get-pip.py
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_SHA256=96461deced5c2a487ddc65207ec5a9cffeca0d34e7af7ea1afc470ff0d746207
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum -c -; export PYTHONDONTWRITEBYTECODE=1; python get-pip.py --disable-pip-version-check --no-cache-dir --no-compile "pip==$PYTHON_PIP_VERSION" "setuptools==$PYTHON_SETUPTOOLS_VERSION" ; rm -f get-pip.py; pip --version # buildkit
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)CMD ["python3"]
2023-07-19 13:27:02 UTC (buildkit.dockerfile.v0)ARG QL_MAINTAINER=whyour
2023-07-19 13:27:02 UTC (buildkit.dockerfile.v0)LABEL maintainer=whyour
2023-07-19 13:27:02 UTC (buildkit.dockerfile.v0)ARG QL_URL=https://github.com/whyour/qinglong.git
2023-07-19 13:27:02 UTC (buildkit.dockerfile.v0)ARG QL_BRANCH=develop
2023-07-19 13:27:02 UTC (buildkit.dockerfile.v0)ENV PNPM_HOME=/root/.local/share/pnpm PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/.local/share/pnpm:/root/.local/share/pnpm/global/5/node_modules: NODE_PATH=/usr/local/bin:/usr/local/pnpm-global/5/node_modules:/usr/local/lib/node_modules:/root/.local/share/pnpm/global/5/node_modules LANG=C.UTF-8 SHELL=/bin/bash PS1=\u@\h:\w $ QL_DIR=/ql QL_BRANCH=v2.15.18
2023-07-19 13:27:02 UTC (buildkit.dockerfile.v0)RUN |3 QL_MAINTAINER=whyour QL_URL=https://github.com/whyour/qinglong.git QL_BRANCH=v2.15.18 /bin/sh -c set -x && sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories && apk update -f && apk upgrade && apk --no-cache add -f bash coreutils git curl wget tzdata perl openssl nginx nodejs jq openssh procps netcat-openbsd npm && rm -rf /var/cache/apk/* && apk update && ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && echo "Asia/Shanghai" > /etc/timezone && git config --global user.email "qinglong@@users.noreply.github.com" && git config --global user.name "qinglong" && git config --global http.postBuffer 524288000 && npm install -g [email protected] && cd && pnpm config set registry https://registry.npmmirror.com && pnpm add -g pm2 tsx && rm -rf /root/.pnpm-store && rm -rf /root/.local/share/pnpm/store && rm -rf /root/.cache && rm -rf /root/.npm # buildkit
2023-07-19 13:27:02 UTC (buildkit.dockerfile.v0)ARG SOURCE_COMMIT
2023-07-19 13:27:13 UTC (buildkit.dockerfile.v0)RUN |4 QL_MAINTAINER=whyour QL_URL=https://github.com/whyour/qinglong.git QL_BRANCH=v2.15.18 SOURCE_COMMIT=56eb0c54089e4e6c9ca1c66a75aa044c7e466083 /bin/sh -c git clone --depth=1 -b ${QL_BRANCH} ${QL_URL} ${QL_DIR} && cd ${QL_DIR} && cp -f .env.example .env && chmod 777 ${QL_DIR}/shell/*.sh && chmod 777 ${QL_DIR}/docker/*.sh && git clone --depth=1 -b ${QL_BRANCH} https://github.com/${QL_MAINTAINER}/qinglong-static.git /static && mkdir -p ${QL_DIR}/static && cp -rf /static/* ${QL_DIR}/static && rm -rf /static # buildkit
2023-07-19 13:27:16 UTC (buildkit.dockerfile.v0)COPY /tmp/build/node_modules/. /ql/node_modules/ # buildkit
2023-07-19 13:27:16 UTC (buildkit.dockerfile.v0)WORKDIR /ql
2023-07-19 13:27:16 UTC (buildkit.dockerfile.v0)HEALTHCHECK &{["CMD-SHELL" "curl -sf http://127.0.0.1:5400/api/health || exit 1"] "5s" "2s" "0s" '\x14'}
2023-07-19 13:27:16 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["./docker/docker-entrypoint.sh"]
2023-07-19 13:28:21 UTC
88.6 MB
A035C8C19219BA821ECEA86B64E628F8D684696D
LANGC.UTF-8
NODE_PATH/usr/local/bin:/usr/local/pnpm-global/5/node_modules:/usr/local/lib/node_modules:/root/.local/share/pnpm/global/5/node_modules
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/.local/share/pnpm:/root/.local/share/pnpm/global/5/node_modules:
PNPM_HOME/root/.local/share/pnpm
PS1\u@\h:\w $
PYTHON_GET_PIP_SHA25696461deced5c2a487ddc65207ec5a9cffeca0d34e7af7ea1afc470ff0d746207
PYTHON_GET_PIP_URLhttps://github.com/pypa/get-pip/raw/0d8570dc44796f4369b652222cf176b3db6ac70e/public/get-pip.py
PYTHON_PIP_VERSION23.0.1
PYTHON_SETUPTOOLS_VERSION65.5.1
PYTHON_VERSION3.10.12
QL_BRANCHv2.15.18
QL_DIR/ql
SHELL/bin/bash
[#000] sha256:8c6d1654570f041603f4cef49c320c8f6f3e401324913009d92a19132cbf1ac0 - 3.58% (3.18 MB)
[#001] sha256:3e16b87699a2fb305f2d22d89b472ce8276d64d0c7941f07ae144bb18bcccba3 - 0.67% (610 KB)
[#002] sha256:0a5245f75284644a626ae05c83887450ee22d1d50efd74d7021d6087a8a63194 - 13.05% (11.6 MB)
[#003] sha256:75f2867817feb03127a4a0fac1c45989f0ff1068e132f37330e47e5fc657ed16 - 0.0% (240 Bytes)
[#004] sha256:e38478caad51d317365e4a10d301cdd6e86d5dfa10256ed74e5249d21c70e04b - 3.31% (2.94 MB)
[#005] sha256:8dea093d01c8706955eaac8ddaef39d3ad3211fa7dd47c0540e876b81f60d574 - 59.43% (52.7 MB)
[#006] sha256:1b423797e5486d4b4d647534f9f7f52300f8f4603833142925e3907a2e656e47 - 4.06% (3.6 MB)
[#007] sha256:51aa8e7ce84798f13df894f27c5485bec5778fe541ad6ebc8a21c0abb80a6b5f - 15.89% (14.1 MB)
[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
/bin/sh -c #(nop) ADD file:289c2fac17119508ced527225d445747cd177111b4a0018a6b04948ecb3b5e29 in /
2023-06-14 20:48:58 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV LANG=C.UTF-8
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; apk add --no-cache ca-certificates tzdata ; # buildkit
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PYTHON_VERSION=3.10.12
2023-06-07 03:49:12 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 expat-dev 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"; 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-system-expat --without-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000"; LDFLAGS="${LDFLAGS:--Wl},--strip-all"; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:-}" "PROFILE_TASK=${PROFILE_TASK:-}" ; rm python; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:--Wl},-rpath='\$\$ORIGIN/../lib'" "PROFILE_TASK=${PROFILE_TASK:-}" 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; python3 --version # buildkit
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; for src in idle3 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
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PYTHON_PIP_VERSION=23.0.1
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PYTHON_SETUPTOOLS_VERSION=65.5.1
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/0d8570dc44796f4369b652222cf176b3db6ac70e/public/get-pip.py
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_SHA256=96461deced5c2a487ddc65207ec5a9cffeca0d34e7af7ea1afc470ff0d746207
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum -c -; export PYTHONDONTWRITEBYTECODE=1; python get-pip.py --disable-pip-version-check --no-cache-dir --no-compile "pip==$PYTHON_PIP_VERSION" "setuptools==$PYTHON_SETUPTOOLS_VERSION" ; rm -f get-pip.py; pip --version # buildkit
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)CMD ["python3"]
2023-07-19 13:28:10 UTC (buildkit.dockerfile.v0)ARG QL_MAINTAINER=whyour
2023-07-19 13:28:10 UTC (buildkit.dockerfile.v0)LABEL maintainer=whyour
2023-07-19 13:28:10 UTC (buildkit.dockerfile.v0)ARG QL_URL=https://github.com/whyour/qinglong.git
2023-07-19 13:28:10 UTC (buildkit.dockerfile.v0)ARG QL_BRANCH=develop
2023-07-19 13:28:10 UTC (buildkit.dockerfile.v0)ENV PNPM_HOME=/root/.local/share/pnpm PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/.local/share/pnpm:/root/.local/share/pnpm/global/5/node_modules: NODE_PATH=/usr/local/bin:/usr/local/pnpm-global/5/node_modules:/usr/local/lib/node_modules:/root/.local/share/pnpm/global/5/node_modules LANG=C.UTF-8 SHELL=/bin/bash PS1=\u@\h:\w $ QL_DIR=/ql QL_BRANCH=v2.15.18
2023-07-19 13:28:10 UTC (buildkit.dockerfile.v0)RUN |3 QL_MAINTAINER=whyour QL_URL=https://github.com/whyour/qinglong.git QL_BRANCH=v2.15.18 /bin/sh -c set -x && sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories && apk update -f && apk upgrade && apk --no-cache add -f bash coreutils git curl wget tzdata perl openssl nginx nodejs jq openssh procps netcat-openbsd npm && rm -rf /var/cache/apk/* && apk update && ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && echo "Asia/Shanghai" > /etc/timezone && git config --global user.email "qinglong@@users.noreply.github.com" && git config --global user.name "qinglong" && git config --global http.postBuffer 524288000 && npm install -g [email protected] && cd && pnpm config set registry https://registry.npmmirror.com && pnpm add -g pm2 tsx && rm -rf /root/.pnpm-store && rm -rf /root/.local/share/pnpm/store && rm -rf /root/.cache && rm -rf /root/.npm # buildkit
2023-07-19 13:28:10 UTC (buildkit.dockerfile.v0)ARG SOURCE_COMMIT
2023-07-19 13:28:17 UTC (buildkit.dockerfile.v0)RUN |4 QL_MAINTAINER=whyour QL_URL=https://github.com/whyour/qinglong.git QL_BRANCH=v2.15.18 SOURCE_COMMIT=56eb0c54089e4e6c9ca1c66a75aa044c7e466083 /bin/sh -c git clone --depth=1 -b ${QL_BRANCH} ${QL_URL} ${QL_DIR} && cd ${QL_DIR} && cp -f .env.example .env && chmod 777 ${QL_DIR}/shell/*.sh && chmod 777 ${QL_DIR}/docker/*.sh && git clone --depth=1 -b ${QL_BRANCH} https://github.com/${QL_MAINTAINER}/qinglong-static.git /static && mkdir -p ${QL_DIR}/static && cp -rf /static/* ${QL_DIR}/static && rm -rf /static # buildkit
2023-07-19 13:28:21 UTC (buildkit.dockerfile.v0)COPY /tmp/build/node_modules/. /ql/node_modules/ # buildkit
2023-07-19 13:28:21 UTC (buildkit.dockerfile.v0)WORKDIR /ql
2023-07-19 13:28:21 UTC (buildkit.dockerfile.v0)HEALTHCHECK &{["CMD-SHELL" "curl -sf http://127.0.0.1:5400/api/health || exit 1"] "5s" "2s" "0s" '\x14'}
2023-07-19 13:28:21 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["./docker/docker-entrypoint.sh"]
2023-07-19 13:28:14 UTC
89.9 MB
A035C8C19219BA821ECEA86B64E628F8D684696D
LANGC.UTF-8
NODE_PATH/usr/local/bin:/usr/local/pnpm-global/5/node_modules:/usr/local/lib/node_modules:/root/.local/share/pnpm/global/5/node_modules
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/.local/share/pnpm:/root/.local/share/pnpm/global/5/node_modules:
PNPM_HOME/root/.local/share/pnpm
PS1\u@\h:\w $
PYTHON_GET_PIP_SHA25696461deced5c2a487ddc65207ec5a9cffeca0d34e7af7ea1afc470ff0d746207
PYTHON_GET_PIP_URLhttps://github.com/pypa/get-pip/raw/0d8570dc44796f4369b652222cf176b3db6ac70e/public/get-pip.py
PYTHON_PIP_VERSION23.0.1
PYTHON_SETUPTOOLS_VERSION65.5.1
PYTHON_VERSION3.10.12
QL_BRANCHv2.15.18
QL_DIR/ql
SHELL/bin/bash
[#000] sha256:ffa4a466dbb8eebd7e7f25590a9df12390de9016abf82279c29c9a64aa76491a - 3.55% (3.19 MB)
[#001] sha256:c395cc612e8669b019c659f5dd94c9def5afc1e78e2144329d0988027d75e051 - 0.66% (610 KB)
[#002] sha256:b81f470697754000d647ffc7b47bd27d50444edd452a1a6164923c9aa642a2fb - 13.19% (11.9 MB)
[#003] sha256:bafbc881f2116ba00217e852530b87b1a8d295500e51dbf82b3a1060df3be752 - 0.0% (243 Bytes)
[#004] sha256:6a89a629e07a38f7edad5ca6a702e935d86c4832abfb165e7ddfaddcb2fcad54 - 3.27% (2.94 MB)
[#005] sha256:b1ab3692b6be87cb1cd3b652094d523d36792e66aff6caa6326a5d0106916392 - 59.45% (53.5 MB)
[#006] sha256:0df0b5927690eb53e35e34dff2e4a10eb0071e53d1b01d3a7285d6eaacaf7c10 - 4.0% (3.6 MB)
[#007] sha256:8eddb9d9ff90ab40d87c7de8894425f2b87b95152b92e6db33b28ea37f923a90 - 15.88% (14.3 MB)
[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
/bin/sh -c #(nop) ADD file:694c636c0dd19fd01accbc189e4c1dc4d063952692c6e7eb26dce02a7adba833 in /
2023-06-15 00:39:49 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV LANG=C.UTF-8
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; apk add --no-cache ca-certificates tzdata ; # buildkit
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PYTHON_VERSION=3.10.12
2023-06-07 03:49:12 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 expat-dev 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"; 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-system-expat --without-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000"; LDFLAGS="${LDFLAGS:--Wl},--strip-all"; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:-}" "PROFILE_TASK=${PROFILE_TASK:-}" ; rm python; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:--Wl},-rpath='\$\$ORIGIN/../lib'" "PROFILE_TASK=${PROFILE_TASK:-}" 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; python3 --version # buildkit
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; for src in idle3 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
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PYTHON_PIP_VERSION=23.0.1
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PYTHON_SETUPTOOLS_VERSION=65.5.1
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/0d8570dc44796f4369b652222cf176b3db6ac70e/public/get-pip.py
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_SHA256=96461deced5c2a487ddc65207ec5a9cffeca0d34e7af7ea1afc470ff0d746207
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum -c -; export PYTHONDONTWRITEBYTECODE=1; python get-pip.py --disable-pip-version-check --no-cache-dir --no-compile "pip==$PYTHON_PIP_VERSION" "setuptools==$PYTHON_SETUPTOOLS_VERSION" ; rm -f get-pip.py; pip --version # buildkit
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)CMD ["python3"]
2023-07-19 13:28:03 UTC (buildkit.dockerfile.v0)ARG QL_MAINTAINER=whyour
2023-07-19 13:28:03 UTC (buildkit.dockerfile.v0)LABEL maintainer=whyour
2023-07-19 13:28:03 UTC (buildkit.dockerfile.v0)ARG QL_URL=https://github.com/whyour/qinglong.git
2023-07-19 13:28:03 UTC (buildkit.dockerfile.v0)ARG QL_BRANCH=develop
2023-07-19 13:28:03 UTC (buildkit.dockerfile.v0)ENV PNPM_HOME=/root/.local/share/pnpm PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/.local/share/pnpm:/root/.local/share/pnpm/global/5/node_modules: NODE_PATH=/usr/local/bin:/usr/local/pnpm-global/5/node_modules:/usr/local/lib/node_modules:/root/.local/share/pnpm/global/5/node_modules LANG=C.UTF-8 SHELL=/bin/bash PS1=\u@\h:\w $ QL_DIR=/ql QL_BRANCH=v2.15.18
2023-07-19 13:28:03 UTC (buildkit.dockerfile.v0)RUN |3 QL_MAINTAINER=whyour QL_URL=https://github.com/whyour/qinglong.git QL_BRANCH=v2.15.18 /bin/sh -c set -x && sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories && apk update -f && apk upgrade && apk --no-cache add -f bash coreutils git curl wget tzdata perl openssl nginx nodejs jq openssh procps netcat-openbsd npm && rm -rf /var/cache/apk/* && apk update && ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && echo "Asia/Shanghai" > /etc/timezone && git config --global user.email "qinglong@@users.noreply.github.com" && git config --global user.name "qinglong" && git config --global http.postBuffer 524288000 && npm install -g [email protected] && cd && pnpm config set registry https://registry.npmmirror.com && pnpm add -g pm2 tsx && rm -rf /root/.pnpm-store && rm -rf /root/.local/share/pnpm/store && rm -rf /root/.cache && rm -rf /root/.npm # buildkit
2023-07-19 13:28:03 UTC (buildkit.dockerfile.v0)ARG SOURCE_COMMIT
2023-07-19 13:28:10 UTC (buildkit.dockerfile.v0)RUN |4 QL_MAINTAINER=whyour QL_URL=https://github.com/whyour/qinglong.git QL_BRANCH=v2.15.18 SOURCE_COMMIT=56eb0c54089e4e6c9ca1c66a75aa044c7e466083 /bin/sh -c git clone --depth=1 -b ${QL_BRANCH} ${QL_URL} ${QL_DIR} && cd ${QL_DIR} && cp -f .env.example .env && chmod 777 ${QL_DIR}/shell/*.sh && chmod 777 ${QL_DIR}/docker/*.sh && git clone --depth=1 -b ${QL_BRANCH} https://github.com/${QL_MAINTAINER}/qinglong-static.git /static && mkdir -p ${QL_DIR}/static && cp -rf /static/* ${QL_DIR}/static && rm -rf /static # buildkit
2023-07-19 13:28:14 UTC (buildkit.dockerfile.v0)COPY /tmp/build/node_modules/. /ql/node_modules/ # buildkit
2023-07-19 13:28:14 UTC (buildkit.dockerfile.v0)WORKDIR /ql
2023-07-19 13:28:14 UTC (buildkit.dockerfile.v0)HEALTHCHECK &{["CMD-SHELL" "curl -sf http://127.0.0.1:5400/api/health || exit 1"] "5s" "2s" "0s" '\x14'}
2023-07-19 13:28:14 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["./docker/docker-entrypoint.sh"]
2023-07-19 13:28:48 UTC
88.9 MB
A035C8C19219BA821ECEA86B64E628F8D684696D
LANGC.UTF-8
NODE_PATH/usr/local/bin:/usr/local/pnpm-global/5/node_modules:/usr/local/lib/node_modules:/root/.local/share/pnpm/global/5/node_modules
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/.local/share/pnpm:/root/.local/share/pnpm/global/5/node_modules:
PNPM_HOME/root/.local/share/pnpm
PS1\u@\h:\w $
PYTHON_GET_PIP_SHA25696461deced5c2a487ddc65207ec5a9cffeca0d34e7af7ea1afc470ff0d746207
PYTHON_GET_PIP_URLhttps://github.com/pypa/get-pip/raw/0d8570dc44796f4369b652222cf176b3db6ac70e/public/get-pip.py
PYTHON_PIP_VERSION23.0.1
PYTHON_SETUPTOOLS_VERSION65.5.1
PYTHON_VERSION3.10.12
QL_BRANCHv2.15.18
QL_DIR/ql
SHELL/bin/bash
[#000] sha256:998cc98447b44e5f0fe799dce691412796ba586ab22eb7c99aebf9d45f34833b - 3.45% (3.06 MB)
[#001] sha256:63da62c59293cf145eb28b9622111928da068900bec945352a08ec4637aa14f8 - 0.67% (608 KB)
[#002] sha256:67a10700d8bdbf271dcecdac7f374fca77347823035f24758e89b67517024bc9 - 12.97% (11.5 MB)
[#003] sha256:2fd78eccd9687b946ddf5a352efc0d860b2002ef050f8ccacb2c825b14f624f7 - 0.0% (243 Bytes)
[#004] sha256:e4df7c819c71930c9cc7bc0bdcb7c654237b13b8263275d97d524ffc3ef073e9 - 3.3% (2.94 MB)
[#005] sha256:dedddec7c686b9497ce602c0ae70dffede511833baa395d7c4fdaa23aed818ec - 59.72% (53.1 MB)
[#006] sha256:fc7583dc2b09cf09405212507f80072f3621af2c794abbeaa4466ac56e1abc21 - 4.05% (3.6 MB)
[#007] sha256:f0972a121d27e825843622279ca275c6308c52ecea9bb63afbf7bc8ae47966a8 - 15.85% (14.1 MB)
[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
/bin/sh -c #(nop) ADD file:a59beca78118ebf4f86cc1685237dc3a29a519401a70668da520beaa3d29eb7a in /
2023-06-15 05:18:38 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV LANG=C.UTF-8
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; apk add --no-cache ca-certificates tzdata ; # buildkit
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PYTHON_VERSION=3.10.12
2023-06-07 03:49:12 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 expat-dev 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"; 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-system-expat --without-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="-DTHREAD_STACK_SIZE=0x100000"; LDFLAGS="${LDFLAGS:--Wl},--strip-all"; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:-}" "PROFILE_TASK=${PROFILE_TASK:-}" ; rm python; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:--Wl},-rpath='\$\$ORIGIN/../lib'" "PROFILE_TASK=${PROFILE_TASK:-}" 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; python3 --version # buildkit
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; for src in idle3 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
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PYTHON_PIP_VERSION=23.0.1
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PYTHON_SETUPTOOLS_VERSION=65.5.1
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/0d8570dc44796f4369b652222cf176b3db6ac70e/public/get-pip.py
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_SHA256=96461deced5c2a487ddc65207ec5a9cffeca0d34e7af7ea1afc470ff0d746207
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum -c -; export PYTHONDONTWRITEBYTECODE=1; python get-pip.py --disable-pip-version-check --no-cache-dir --no-compile "pip==$PYTHON_PIP_VERSION" "setuptools==$PYTHON_SETUPTOOLS_VERSION" ; rm -f get-pip.py; pip --version # buildkit
2023-06-07 03:49:12 UTC (buildkit.dockerfile.v0)CMD ["python3"]
2023-07-19 13:28:40 UTC (buildkit.dockerfile.v0)ARG QL_MAINTAINER=whyour
2023-07-19 13:28:40 UTC (buildkit.dockerfile.v0)LABEL maintainer=whyour
2023-07-19 13:28:40 UTC (buildkit.dockerfile.v0)ARG QL_URL=https://github.com/whyour/qinglong.git
2023-07-19 13:28:40 UTC (buildkit.dockerfile.v0)ARG QL_BRANCH=develop
2023-07-19 13:28:40 UTC (buildkit.dockerfile.v0)ENV PNPM_HOME=/root/.local/share/pnpm PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/.local/share/pnpm:/root/.local/share/pnpm/global/5/node_modules: NODE_PATH=/usr/local/bin:/usr/local/pnpm-global/5/node_modules:/usr/local/lib/node_modules:/root/.local/share/pnpm/global/5/node_modules LANG=C.UTF-8 SHELL=/bin/bash PS1=\u@\h:\w $ QL_DIR=/ql QL_BRANCH=v2.15.18
2023-07-19 13:28:40 UTC (buildkit.dockerfile.v0)RUN |3 QL_MAINTAINER=whyour QL_URL=https://github.com/whyour/qinglong.git QL_BRANCH=v2.15.18 /bin/sh -c set -x && sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories && apk update -f && apk upgrade && apk --no-cache add -f bash coreutils git curl wget tzdata perl openssl nginx nodejs jq openssh procps netcat-openbsd npm && rm -rf /var/cache/apk/* && apk update && ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && echo "Asia/Shanghai" > /etc/timezone && git config --global user.email "qinglong@@users.noreply.github.com" && git config --global user.name "qinglong" && git config --global http.postBuffer 524288000 && npm install -g [email protected] && cd && pnpm config set registry https://registry.npmmirror.com && pnpm add -g pm2 tsx && rm -rf /root/.pnpm-store && rm -rf /root/.local/share/pnpm/store && rm -rf /root/.cache && rm -rf /root/.npm # buildkit
2023-07-19 13:28:40 UTC (buildkit.dockerfile.v0)ARG SOURCE_COMMIT
2023-07-19 13:28:45 UTC (buildkit.dockerfile.v0)RUN |4 QL_MAINTAINER=whyour QL_URL=https://github.com/whyour/qinglong.git QL_BRANCH=v2.15.18 SOURCE_COMMIT=56eb0c54089e4e6c9ca1c66a75aa044c7e466083 /bin/sh -c git clone --depth=1 -b ${QL_BRANCH} ${QL_URL} ${QL_DIR} && cd ${QL_DIR} && cp -f .env.example .env && chmod 777 ${QL_DIR}/shell/*.sh && chmod 777 ${QL_DIR}/docker/*.sh && git clone --depth=1 -b ${QL_BRANCH} https://github.com/${QL_MAINTAINER}/qinglong-static.git /static && mkdir -p ${QL_DIR}/static && cp -rf /static/* ${QL_DIR}/static && rm -rf /static # buildkit
2023-07-19 13:28:48 UTC (buildkit.dockerfile.v0)COPY /tmp/build/node_modules/. /ql/node_modules/ # buildkit
2023-07-19 13:28:48 UTC (buildkit.dockerfile.v0)WORKDIR /ql
2023-07-19 13:28:48 UTC (buildkit.dockerfile.v0)HEALTHCHECK &{["CMD-SHELL" "curl -sf http://127.0.0.1:5400/api/health || exit 1"] "5s" "2s" "0s" '\x14'}
2023-07-19 13:28:48 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["./docker/docker-entrypoint.sh"]
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.