2024-07-13 15:58:36 UTC
108 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_SHA256ee09098395e42eb1f82ef4acb231a767a6ae85504a9cf9983223df0a7cbd35d7
PYTHON_GET_PIP_URLhttps://github.com/pypa/get-pip/raw/e03e1607ad60522cf34a92e834138eb89f57667c/public/get-pip.py
PYTHON_PIP_VERSION24.0
PYTHON_SETUPTOOLS_VERSION65.5.1
PYTHON_VERSION3.11.9
QL_BRANCHv2.17.8
QL_DIR/ql
SHELL/bin/bash
[#000] sha256:354eb832d25d95145569d0a3a573fb95b8350ee897d5b90a2f67ec1157706ec2 - 3.06% (3.31 MB)
[#001] sha256:ea8a5338408c68fbd827561f7ca9190d6f39634c964f34babc0d45ffa489521e - 0.41% (451 KB)
[#002] sha256:2813f77a3c3686a8408ef3ca92ca3232f05f58d8661efd58346d99312e2d91a7 - 13.35% (14.4 MB)
[#003] sha256:83b94318dfb04bffd977f93e82bbe641d144d0461e5b9b201a3b10bca1b56eb0 - 0.0% (230 Bytes)
[#004] sha256:26a6db847c447b72cf4c28e9527ac241572f03c3f4314aeacf9f24b060180340 - 2.76% (2.99 MB)
[#005] sha256:39eddcddaff8f40c939fb4bcfe45a553c94f082282f3d087a3682cd6488d009e - 11.52% (12.4 MB)
[#006] sha256:0742efac738f063e07572e8be56c5b7c2ae5235bd013e1eeb83d55fd2f717f69 - 0.0% (3.96 KB)
[#007] sha256:1dae08eec5b00e1941e804e08ad7aadee5a70f3b3d33d3a40d7180aa4190ab17 - 41.88% (45.2 MB)
[#008] sha256:7ec74b31ed11a77380be3dbbc22d42a64e26d626b82df6f39ddd914a020bdee2 - 9.12% (9.85 MB)
[#009] sha256:2d0eb29a2bc1d36e75c6ebbc279a8c2eb5dc9d0fae5a261de7bdb1053e6eae35 - 17.89% (19.3 MB)
[#010] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
/bin/sh -c #(nop) ADD file:cd0e8f9dc9e579bd0c884d2c92e4773391bd73d8302d6f4a9bca0796e7ff9a77 in /
2024-06-20 17:38:25 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV LANG=C.UTF-8
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; apk add --no-cache ca-certificates tzdata ; # buildkit
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PYTHON_VERSION=3.11.9
2024-07-07 22:31:37 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 $(test "$gnuArch" != 'riscv64-linux-musl' && echo '--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
2024-07-07 22:31:37 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
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PYTHON_PIP_VERSION=24.0
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PYTHON_SETUPTOOLS_VERSION=65.5.1
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/e03e1607ad60522cf34a92e834138eb89f57667c/public/get-pip.py
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_SHA256=ee09098395e42eb1f82ef4acb231a767a6ae85504a9cf9983223df0a7cbd35d7
2024-07-07 22:31:37 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
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)CMD ["python3"]
2024-07-11 17:44:14 UTC (buildkit.dockerfile.v0)ARG QL_MAINTAINER=whyour
2024-07-11 17:44:14 UTC (buildkit.dockerfile.v0)LABEL maintainer=whyour
2024-07-11 17:44:14 UTC (buildkit.dockerfile.v0)ARG QL_URL=https://github.com/whyour/qinglong.git
2024-07-11 17:44:14 UTC (buildkit.dockerfile.v0)ARG QL_BRANCH=v2.17.8
2024-07-11 17:44:14 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.17.8
2024-07-11 17:44:14 UTC (buildkit.dockerfile.v0)VOLUME [/ql/data]
2024-07-11 17:44:14 UTC (buildkit.dockerfile.v0)EXPOSE map[5700/tcp:{}]
2024-07-11 17:44:14 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/node_modules/. /usr/local/lib/node_modules/ # buildkit
2024-07-11 17:44:14 UTC (buildkit.dockerfile.v0)COPY /usr/local/bin/. /usr/local/bin/ # buildkit
2024-07-13 15:57:38 UTC (buildkit.dockerfile.v0)RUN |3 QL_MAINTAINER=whyour QL_URL=https://github.com/whyour/qinglong.git QL_BRANCH=v2.17.8 /bin/sh -c set -x && 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 unzip 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 && rm -rf /root/.pnpm-store && rm -rf /root/.local/share/pnpm/store && rm -rf /root/.cache && ulimit -c 0 # buildkit
2024-07-13 15:57:38 UTC (buildkit.dockerfile.v0)ARG SOURCE_COMMIT=f47a7881849451c6caa7ebda18a90d77546abbb4
2024-07-13 15:57:43 UTC (buildkit.dockerfile.v0)RUN |4 QL_MAINTAINER=whyour QL_URL=https://github.com/whyour/qinglong.git QL_BRANCH=v2.17.8 SOURCE_COMMIT=f47a7881849451c6caa7ebda18a90d77546abbb4 /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
2024-07-13 15:58:36 UTC (buildkit.dockerfile.v0)COPY /tmp/build/node_modules/. /ql/node_modules/ # buildkit
2024-07-13 15:58:36 UTC (buildkit.dockerfile.v0)WORKDIR /ql
2024-07-13 15:58:36 UTC (buildkit.dockerfile.v0)HEALTHCHECK &{["CMD-SHELL" "curl -sf --noproxy '*' http://127.0.0.1:5400/api/health || exit 1"] "5s" "2s" "0s" "0s" '\x14'}
2024-07-13 15:58:36 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["./docker/docker-entrypoint.sh"]
2024-07-13 15:57:44 UTC
108 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_SHA256ee09098395e42eb1f82ef4acb231a767a6ae85504a9cf9983223df0a7cbd35d7
PYTHON_GET_PIP_URLhttps://github.com/pypa/get-pip/raw/e03e1607ad60522cf34a92e834138eb89f57667c/public/get-pip.py
PYTHON_PIP_VERSION24.0
PYTHON_SETUPTOOLS_VERSION65.5.1
PYTHON_VERSION3.11.9
QL_BRANCHv2.17.8
QL_DIR/ql
SHELL/bin/bash
[#000] sha256:ec99f8b99825a742d50fb3ce173d291378a46ab54b8ef7dd75e5654e2a296e99 - 3.19% (3.46 MB)
[#001] sha256:a0aab5935990b3c01bf4073d2e092aa6e3c8d21d6e5fcab7b112fb71b597b660 - 0.41% (451 KB)
[#002] sha256:0017c34ace6c7ab617a3b53a7da7db88fecf5cdcb69c3042946de48d31904d9a - 13.28% (14.4 MB)
[#003] sha256:704141445f2268970e9d64c8f941c4e2c87acea392924e4c772feaf0768e03b1 - 0.0% (230 Bytes)
[#004] sha256:7d353c5632ced4c8d78938b39b82281f71f3fa19fab8fd0e661168e29e7a2b03 - 2.76% (2.99 MB)
[#005] sha256:bbb23c846b6ea8f99c64dc18c6155617bcc5794cbab47e0f49699a02d018b415 - 11.48% (12.4 MB)
[#006] sha256:2655c1b297ed31eb58f47b6443d55c9eb95ebeb5f0f7521ac6f1e7f3397d13ad - 0.0% (3.87 KB)
[#007] sha256:eebd844cf0c50cc8dbf5601b8f9fac9391bdadd935e228776866606fb7d7d7e7 - 41.98% (45.5 MB)
[#008] sha256:2542a71cd21ce4027f2dd1f5ac1f0dbebafa83baa61bc51d0d513e2649b3bf13 - 9.09% (9.85 MB)
[#009] sha256:12fb623d27446cb35ac0641641172515555fc8f3377b60df6ad2d5183cdd7718 - 17.82% (19.3 MB)
[#010] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
/bin/sh -c #(nop) ADD file:33ebe56b967747a97dcec01bc2559962bee8823686c9739d26be060381bbb3ca in /
2024-06-20 20:16:58 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV LANG=C.UTF-8
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; apk add --no-cache ca-certificates tzdata ; # buildkit
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PYTHON_VERSION=3.11.9
2024-07-07 22:31:37 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 $(test "$gnuArch" != 'riscv64-linux-musl' && echo '--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
2024-07-07 22:31:37 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
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PYTHON_PIP_VERSION=24.0
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PYTHON_SETUPTOOLS_VERSION=65.5.1
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/e03e1607ad60522cf34a92e834138eb89f57667c/public/get-pip.py
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_SHA256=ee09098395e42eb1f82ef4acb231a767a6ae85504a9cf9983223df0a7cbd35d7
2024-07-07 22:31:37 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
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)CMD ["python3"]
2024-07-11 17:43:30 UTC (buildkit.dockerfile.v0)ARG QL_MAINTAINER=whyour
2024-07-11 17:43:30 UTC (buildkit.dockerfile.v0)LABEL maintainer=whyour
2024-07-11 17:43:30 UTC (buildkit.dockerfile.v0)ARG QL_URL=https://github.com/whyour/qinglong.git
2024-07-11 17:43:30 UTC (buildkit.dockerfile.v0)ARG QL_BRANCH=v2.17.8
2024-07-11 17:43:30 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.17.8
2024-07-11 17:43:30 UTC (buildkit.dockerfile.v0)VOLUME [/ql/data]
2024-07-11 17:43:30 UTC (buildkit.dockerfile.v0)EXPOSE map[5700/tcp:{}]
2024-07-11 17:43:30 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/node_modules/. /usr/local/lib/node_modules/ # buildkit
2024-07-11 17:43:30 UTC (buildkit.dockerfile.v0)COPY /usr/local/bin/. /usr/local/bin/ # buildkit
2024-07-13 15:57:38 UTC (buildkit.dockerfile.v0)RUN |3 QL_MAINTAINER=whyour QL_URL=https://github.com/whyour/qinglong.git QL_BRANCH=v2.17.8 /bin/sh -c set -x && 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 unzip 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 && rm -rf /root/.pnpm-store && rm -rf /root/.local/share/pnpm/store && rm -rf /root/.cache && ulimit -c 0 # buildkit
2024-07-13 15:57:38 UTC (buildkit.dockerfile.v0)ARG SOURCE_COMMIT=f47a7881849451c6caa7ebda18a90d77546abbb4
2024-07-13 15:57:42 UTC (buildkit.dockerfile.v0)RUN |4 QL_MAINTAINER=whyour QL_URL=https://github.com/whyour/qinglong.git QL_BRANCH=v2.17.8 SOURCE_COMMIT=f47a7881849451c6caa7ebda18a90d77546abbb4 /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
2024-07-13 15:57:44 UTC (buildkit.dockerfile.v0)COPY /tmp/build/node_modules/. /ql/node_modules/ # buildkit
2024-07-13 15:57:44 UTC (buildkit.dockerfile.v0)WORKDIR /ql
2024-07-13 15:57:44 UTC (buildkit.dockerfile.v0)HEALTHCHECK &{["CMD-SHELL" "curl -sf --noproxy '*' http://127.0.0.1:5400/api/health || exit 1"] "5s" "2s" "0s" "0s" '\x14'}
2024-07-13 15:57:44 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["./docker/docker-entrypoint.sh"]
2024-07-13 16:02:30 UTC
105 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_SHA256ee09098395e42eb1f82ef4acb231a767a6ae85504a9cf9983223df0a7cbd35d7
PYTHON_GET_PIP_URLhttps://github.com/pypa/get-pip/raw/e03e1607ad60522cf34a92e834138eb89f57667c/public/get-pip.py
PYTHON_PIP_VERSION24.0
PYTHON_SETUPTOOLS_VERSION65.5.1
PYTHON_VERSION3.11.9
QL_BRANCHv2.17.8
QL_DIR/ql
SHELL/bin/bash
[#000] sha256:3d2af5f613c84e549fb09710d45b152d3cdf48eb7a37dc3e9c01e2b3975f4f76 - 3.07% (3.21 MB)
[#001] sha256:ba80aed40dc0d93565b3fcce19703d79949c65bed2ae051e3cb520c4e577d7a0 - 0.42% (452 KB)
[#002] sha256:3090b7a34edde25fbe2517b1b90d98d23bd5ce4e9ff3cba8059531afea3b006b - 13.07% (13.7 MB)
[#003] sha256:3fb9b3248133a7aa9b7644331ad8860b84046d10750275a954db68852bfe68b2 - 0.0% (230 Bytes)
[#004] sha256:9b2fba9b500f90d1684b4f7f5eb104e1fa9b8c0da85347fccb73e900326cbc27 - 2.85% (2.99 MB)
[#005] sha256:b59d69e85515e0d9a5adf7bba829fe97dda246c8d68197ad9f20f21083b8418c - 11.88% (12.4 MB)
[#006] sha256:8a58ea1c0d5cb8a54554d551cd23c967f02932c96b0c6fe12be431fd1de21d81 - 0.0% (3.86 KB)
[#007] sha256:af7080ad58cf85d43b3537007651478fc43e8d2f647d19574898be664268f212 - 40.99% (42.9 MB)
[#008] sha256:b9fa21fb75cbd209352ea121faa8ebed9f7d47a042f85ab9f36278dfa783c6bd - 9.4% (9.85 MB)
[#009] sha256:3fa871185ed92edef46d0f879419bb69b88056d58e85ff9d4d3106c8d27a52c4 - 18.31% (19.2 MB)
[#010] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
/bin/sh -c #(nop) ADD file:ef2635f09c1d2632408805d106fbc5d27fb307cb5f584bddc699b4b5ae577623 in /
2024-06-20 17:49:15 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV LANG=C.UTF-8
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; apk add --no-cache ca-certificates tzdata ; # buildkit
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PYTHON_VERSION=3.11.9
2024-07-07 22:31:37 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 $(test "$gnuArch" != 'riscv64-linux-musl' && echo '--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
2024-07-07 22:31:37 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
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PYTHON_PIP_VERSION=24.0
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PYTHON_SETUPTOOLS_VERSION=65.5.1
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/e03e1607ad60522cf34a92e834138eb89f57667c/public/get-pip.py
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_SHA256=ee09098395e42eb1f82ef4acb231a767a6ae85504a9cf9983223df0a7cbd35d7
2024-07-07 22:31:37 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
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)CMD ["python3"]
2024-07-11 17:48:13 UTC (buildkit.dockerfile.v0)ARG QL_MAINTAINER=whyour
2024-07-11 17:48:13 UTC (buildkit.dockerfile.v0)LABEL maintainer=whyour
2024-07-11 17:48:13 UTC (buildkit.dockerfile.v0)ARG QL_URL=https://github.com/whyour/qinglong.git
2024-07-11 17:48:13 UTC (buildkit.dockerfile.v0)ARG QL_BRANCH=v2.17.8
2024-07-11 17:48:13 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.17.8
2024-07-11 17:48:13 UTC (buildkit.dockerfile.v0)VOLUME [/ql/data]
2024-07-11 17:48:13 UTC (buildkit.dockerfile.v0)EXPOSE map[5700/tcp:{}]
2024-07-11 17:48:13 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/node_modules/. /usr/local/lib/node_modules/ # buildkit
2024-07-11 17:48:13 UTC (buildkit.dockerfile.v0)COPY /usr/local/bin/. /usr/local/bin/ # buildkit
2024-07-13 15:58:13 UTC (buildkit.dockerfile.v0)RUN |3 QL_MAINTAINER=whyour QL_URL=https://github.com/whyour/qinglong.git QL_BRANCH=v2.17.8 /bin/sh -c set -x && 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 unzip 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 && rm -rf /root/.pnpm-store && rm -rf /root/.local/share/pnpm/store && rm -rf /root/.cache && ulimit -c 0 # buildkit
2024-07-13 15:58:13 UTC (buildkit.dockerfile.v0)ARG SOURCE_COMMIT=f47a7881849451c6caa7ebda18a90d77546abbb4
2024-07-13 15:58:27 UTC (buildkit.dockerfile.v0)RUN |4 QL_MAINTAINER=whyour QL_URL=https://github.com/whyour/qinglong.git QL_BRANCH=v2.17.8 SOURCE_COMMIT=f47a7881849451c6caa7ebda18a90d77546abbb4 /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
2024-07-13 16:02:30 UTC (buildkit.dockerfile.v0)COPY /tmp/build/node_modules/. /ql/node_modules/ # buildkit
2024-07-13 16:02:30 UTC (buildkit.dockerfile.v0)WORKDIR /ql
2024-07-13 16:02:30 UTC (buildkit.dockerfile.v0)HEALTHCHECK &{["CMD-SHELL" "curl -sf --noproxy '*' http://127.0.0.1:5400/api/health || exit 1"] "5s" "2s" "0s" "0s" '\x14'}
2024-07-13 16:02:30 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["./docker/docker-entrypoint.sh"]
2024-07-13 16:02:25 UTC
103 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_SHA256ee09098395e42eb1f82ef4acb231a767a6ae85504a9cf9983223df0a7cbd35d7
PYTHON_GET_PIP_URLhttps://github.com/pypa/get-pip/raw/e03e1607ad60522cf34a92e834138eb89f57667c/public/get-pip.py
PYTHON_PIP_VERSION24.0
PYTHON_SETUPTOOLS_VERSION65.5.1
PYTHON_VERSION3.11.9
QL_BRANCHv2.17.8
QL_DIR/ql
SHELL/bin/bash
[#000] sha256:3fb467f9cb36e54d3cb8806db734a6c640048f3dc270b506ec1f111640905b79 - 2.87% (2.95 MB)
[#001] sha256:b67fbf7b03239e69ea5cefa1b3bcbeb41abb2359ce6e7c757b9818b1d72bef20 - 0.43% (452 KB)
[#002] sha256:3f2f854d6f714f3b5e44cdc14f8dbbcd72be3258abc480ae157956fdb3abe162 - 12.78% (13.1 MB)
[#003] sha256:161aa272db8060daf0cf989f16da88b9c72bfc1b14eba733024d3250a5c69dfb - 0.0% (231 Bytes)
[#004] sha256:fd57a68c3c7f309e875aa010fd753f00cbef2dfa64f18cba5969bce1022cb8b1 - 2.9% (2.98 MB)
[#005] sha256:04b10c3c99220a39c6b3b0ccc43ac3210ab6f1c94f9c2b44bc5363fb68ebc7c1 - 12.1% (12.4 MB)
[#006] sha256:59fd120133f808d342ea30671893fcbe5a901ca0ce4255e848c81573451654af - 0.0% (3.81 KB)
[#007] sha256:12b52502bfcb377285dc75493945bbb7e78e5107cdfe2ab58f2dc43beffc6398 - 40.67% (41.8 MB)
[#008] sha256:3f2f31e9b3d58673c372ac9e6ba6f22741166c9996ad6306cf83d4a4ee03149b - 9.58% (9.85 MB)
[#009] sha256:b5ae44546a5a8831a0b27d2f510234b6cdaea21d68581182ab74aafeae613c29 - 18.65% (19.2 MB)
[#010] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
/bin/sh -c #(nop) ADD file:4d58f44e3cedeba6fad741c79bc5acab1a9f2a2f597c854dc3bb8b8595ebf3e1 in /
2024-06-20 18:00:28 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV LANG=C.UTF-8
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; apk add --no-cache ca-certificates tzdata ; # buildkit
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PYTHON_VERSION=3.11.9
2024-07-07 22:31:37 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 $(test "$gnuArch" != 'riscv64-linux-musl' && echo '--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
2024-07-07 22:31:37 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
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PYTHON_PIP_VERSION=24.0
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PYTHON_SETUPTOOLS_VERSION=65.5.1
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/e03e1607ad60522cf34a92e834138eb89f57667c/public/get-pip.py
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_SHA256=ee09098395e42eb1f82ef4acb231a767a6ae85504a9cf9983223df0a7cbd35d7
2024-07-07 22:31:37 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
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)CMD ["python3"]
2024-07-11 17:48:17 UTC (buildkit.dockerfile.v0)ARG QL_MAINTAINER=whyour
2024-07-11 17:48:17 UTC (buildkit.dockerfile.v0)LABEL maintainer=whyour
2024-07-11 17:48:17 UTC (buildkit.dockerfile.v0)ARG QL_URL=https://github.com/whyour/qinglong.git
2024-07-11 17:48:17 UTC (buildkit.dockerfile.v0)ARG QL_BRANCH=v2.17.8
2024-07-11 17:48:17 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.17.8
2024-07-11 17:48:17 UTC (buildkit.dockerfile.v0)VOLUME [/ql/data]
2024-07-11 17:48:17 UTC (buildkit.dockerfile.v0)EXPOSE map[5700/tcp:{}]
2024-07-11 17:48:17 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/node_modules/. /usr/local/lib/node_modules/ # buildkit
2024-07-11 17:48:17 UTC (buildkit.dockerfile.v0)COPY /usr/local/bin/. /usr/local/bin/ # buildkit
2024-07-13 15:58:14 UTC (buildkit.dockerfile.v0)RUN |3 QL_MAINTAINER=whyour QL_URL=https://github.com/whyour/qinglong.git QL_BRANCH=v2.17.8 /bin/sh -c set -x && 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 unzip 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 && rm -rf /root/.pnpm-store && rm -rf /root/.local/share/pnpm/store && rm -rf /root/.cache && ulimit -c 0 # buildkit
2024-07-13 15:58:14 UTC (buildkit.dockerfile.v0)ARG SOURCE_COMMIT=f47a7881849451c6caa7ebda18a90d77546abbb4
2024-07-13 15:58:28 UTC (buildkit.dockerfile.v0)RUN |4 QL_MAINTAINER=whyour QL_URL=https://github.com/whyour/qinglong.git QL_BRANCH=v2.17.8 SOURCE_COMMIT=f47a7881849451c6caa7ebda18a90d77546abbb4 /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
2024-07-13 16:02:25 UTC (buildkit.dockerfile.v0)COPY /tmp/build/node_modules/. /ql/node_modules/ # buildkit
2024-07-13 16:02:25 UTC (buildkit.dockerfile.v0)WORKDIR /ql
2024-07-13 16:02:25 UTC (buildkit.dockerfile.v0)HEALTHCHECK &{["CMD-SHELL" "curl -sf --noproxy '*' http://127.0.0.1:5400/api/health || exit 1"] "5s" "2s" "0s" "0s" '\x14'}
2024-07-13 16:02:25 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["./docker/docker-entrypoint.sh"]
2024-07-13 16:02:49 UTC
110 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_SHA256ee09098395e42eb1f82ef4acb231a767a6ae85504a9cf9983223df0a7cbd35d7
PYTHON_GET_PIP_URLhttps://github.com/pypa/get-pip/raw/e03e1607ad60522cf34a92e834138eb89f57667c/public/get-pip.py
PYTHON_PIP_VERSION24.0
PYTHON_SETUPTOOLS_VERSION65.5.1
PYTHON_VERSION3.11.9
QL_BRANCHv2.17.8
QL_DIR/ql
SHELL/bin/bash
[#000] sha256:a258b2a6b59a7aa244d8ceab095c7f8df726f27075a69fca7ad8490f3f63148a - 3.55% (3.9 MB)
[#001] sha256:651520864e37836e5ab990630591892b9d8473fa358c43e86895ef38eabe513f - 0.4% (455 KB)
[#002] sha256:ce27642b48d2417e310844c69b11c99ea69f19d68e74f03a8098f09de6fcb245 - 13.52% (14.9 MB)
[#003] sha256:602299a8e23e153358a3cd4561fce80173b020df061c92982071b97c0619953f - 0.0% (229 Bytes)
[#004] sha256:eabda81a71da553e4e69e3f1f7c27221aaf50e21fd063080fb828f2070c8d2fd - 2.72% (2.98 MB)
[#005] sha256:13926e0aacf042b4e8a97f82fd40ec0d1703cb2eae4c77d184ead22141166e80 - 11.32% (12.4 MB)
[#006] sha256:b0758b8e9e858d360087043c28c75c75477a7b166f18a8bd9fb550870a9eeaf2 - 0.0% (4.3 KB)
[#007] sha256:116715fd439d82b89919ee6fa32626d87aae1110245319f730acf1a73bb1a21d - 41.95% (46.1 MB)
[#008] sha256:e37ac91dbe86053fbee69de1086fcc5baf2459a88155c500e0e50d02d24173e7 - 8.96% (9.85 MB)
[#009] sha256:ebd19fc6998437c4986da002abc66d145f5f177cf0e6fef71e075766b409c3a7 - 17.56% (19.3 MB)
[#010] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
/bin/sh -c #(nop) ADD file:033626ac44156f3d5800a602c46870486b1492b9ba26096eaa66cceb6fcead77 in /
2024-06-20 17:40:35 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV LANG=C.UTF-8
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; apk add --no-cache ca-certificates tzdata ; # buildkit
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PYTHON_VERSION=3.11.9
2024-07-07 22:31:37 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 $(test "$gnuArch" != 'riscv64-linux-musl' && echo '--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
2024-07-07 22:31:37 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
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PYTHON_PIP_VERSION=24.0
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PYTHON_SETUPTOOLS_VERSION=65.5.1
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/e03e1607ad60522cf34a92e834138eb89f57667c/public/get-pip.py
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_SHA256=ee09098395e42eb1f82ef4acb231a767a6ae85504a9cf9983223df0a7cbd35d7
2024-07-07 22:31:37 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
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)CMD ["python3"]
2024-07-11 17:49:00 UTC (buildkit.dockerfile.v0)ARG QL_MAINTAINER=whyour
2024-07-11 17:49:00 UTC (buildkit.dockerfile.v0)LABEL maintainer=whyour
2024-07-11 17:49:00 UTC (buildkit.dockerfile.v0)ARG QL_URL=https://github.com/whyour/qinglong.git
2024-07-11 17:49:00 UTC (buildkit.dockerfile.v0)ARG QL_BRANCH=v2.17.8
2024-07-11 17:49:00 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.17.8
2024-07-11 17:49:00 UTC (buildkit.dockerfile.v0)VOLUME [/ql/data]
2024-07-11 17:49:00 UTC (buildkit.dockerfile.v0)EXPOSE map[5700/tcp:{}]
2024-07-11 17:49:00 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/node_modules/. /usr/local/lib/node_modules/ # buildkit
2024-07-11 17:49:00 UTC (buildkit.dockerfile.v0)COPY /usr/local/bin/. /usr/local/bin/ # buildkit
2024-07-13 15:58:19 UTC (buildkit.dockerfile.v0)RUN |3 QL_MAINTAINER=whyour QL_URL=https://github.com/whyour/qinglong.git QL_BRANCH=v2.17.8 /bin/sh -c set -x && 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 unzip 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 && rm -rf /root/.pnpm-store && rm -rf /root/.local/share/pnpm/store && rm -rf /root/.cache && ulimit -c 0 # buildkit
2024-07-13 15:58:19 UTC (buildkit.dockerfile.v0)ARG SOURCE_COMMIT=f47a7881849451c6caa7ebda18a90d77546abbb4
2024-07-13 15:58:34 UTC (buildkit.dockerfile.v0)RUN |4 QL_MAINTAINER=whyour QL_URL=https://github.com/whyour/qinglong.git QL_BRANCH=v2.17.8 SOURCE_COMMIT=f47a7881849451c6caa7ebda18a90d77546abbb4 /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
2024-07-13 16:02:49 UTC (buildkit.dockerfile.v0)COPY /tmp/build/node_modules/. /ql/node_modules/ # buildkit
2024-07-13 16:02:49 UTC (buildkit.dockerfile.v0)WORKDIR /ql
2024-07-13 16:02:49 UTC (buildkit.dockerfile.v0)HEALTHCHECK &{["CMD-SHELL" "curl -sf --noproxy '*' http://127.0.0.1:5400/api/health || exit 1"] "5s" "2s" "0s" "0s" '\x14'}
2024-07-13 16:02:49 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["./docker/docker-entrypoint.sh"]
2024-07-13 16:02:21 UTC
110 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_SHA256ee09098395e42eb1f82ef4acb231a767a6ae85504a9cf9983223df0a7cbd35d7
PYTHON_GET_PIP_URLhttps://github.com/pypa/get-pip/raw/e03e1607ad60522cf34a92e834138eb89f57667c/public/get-pip.py
PYTHON_PIP_VERSION24.0
PYTHON_SETUPTOOLS_VERSION65.5.1
PYTHON_VERSION3.11.9
QL_BRANCHv2.17.8
QL_DIR/ql
SHELL/bin/bash
[#000] sha256:b02dcd5eb44e382ea711bca074a007403db63dacf55f888b3a87214d1052dd50 - 3.11% (3.41 MB)
[#001] sha256:e03dda537e2a89e050c4a6baee145aa8999cb1aeb295d4b29f95940b9351c2e3 - 0.41% (455 KB)
[#002] sha256:8e143ed48c8c7527da541ce7ce54d252f631b5995266ba5e79e6a20aa7a8c3ee - 13.44% (14.7 MB)
[#003] sha256:95e1363148187159e5177483f3a200f50e8822820ad2ed60d4efbe2c6c0e342a - 0.0% (229 Bytes)
[#004] sha256:424e539e2684ad997870b749e78c786230a82ce04341051e9f3d4aa195004b11 - 2.72% (2.99 MB)
[#005] sha256:c8e90805d97f0d31383fc148045c4c25fb93a9d7b3be5bb4bc8bd021ac1e8b98 - 11.36% (12.4 MB)
[#006] sha256:5f075425b36820afe016b99eee0050f6edb791504e302e70960ce1b556e23967 - 0.0% (4.29 KB)
[#007] sha256:906c2fbaee83441507034b61397ed481a0b1aad90480d09080239171e44ba05d - 42.2% (46.2 MB)
[#008] sha256:f2450b82fabb0e334cb0b392eb733a3c0552443d95fa7f97b6fd234256019760 - 8.99% (9.85 MB)
[#009] sha256:3346305d5e359a41dfe40069336c9320c132ff81da14c1e0ce5f5fd4f33b6ad0 - 17.77% (19.5 MB)
[#010] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
/bin/sh -c #(nop) ADD file:c98fdd4075ec8eb66a469bd36f2d1369030638ad4b76778b5ad9c787b9f63c8b in /
2024-06-20 18:18:22 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV LANG=C.UTF-8
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; apk add --no-cache ca-certificates tzdata ; # buildkit
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PYTHON_VERSION=3.11.9
2024-07-07 22:31:37 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 $(test "$gnuArch" != 'riscv64-linux-musl' && echo '--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
2024-07-07 22:31:37 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
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PYTHON_PIP_VERSION=24.0
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PYTHON_SETUPTOOLS_VERSION=65.5.1
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/e03e1607ad60522cf34a92e834138eb89f57667c/public/get-pip.py
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_SHA256=ee09098395e42eb1f82ef4acb231a767a6ae85504a9cf9983223df0a7cbd35d7
2024-07-07 22:31:37 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
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)CMD ["python3"]
2024-07-11 17:48:05 UTC (buildkit.dockerfile.v0)ARG QL_MAINTAINER=whyour
2024-07-11 17:48:05 UTC (buildkit.dockerfile.v0)LABEL maintainer=whyour
2024-07-11 17:48:05 UTC (buildkit.dockerfile.v0)ARG QL_URL=https://github.com/whyour/qinglong.git
2024-07-11 17:48:05 UTC (buildkit.dockerfile.v0)ARG QL_BRANCH=v2.17.8
2024-07-11 17:48:05 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.17.8
2024-07-11 17:48:05 UTC (buildkit.dockerfile.v0)VOLUME [/ql/data]
2024-07-11 17:48:05 UTC (buildkit.dockerfile.v0)EXPOSE map[5700/tcp:{}]
2024-07-11 17:48:05 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/node_modules/. /usr/local/lib/node_modules/ # buildkit
2024-07-11 17:48:05 UTC (buildkit.dockerfile.v0)COPY /usr/local/bin/. /usr/local/bin/ # buildkit
2024-07-13 15:58:23 UTC (buildkit.dockerfile.v0)RUN |3 QL_MAINTAINER=whyour QL_URL=https://github.com/whyour/qinglong.git QL_BRANCH=v2.17.8 /bin/sh -c set -x && 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 unzip 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 && rm -rf /root/.pnpm-store && rm -rf /root/.local/share/pnpm/store && rm -rf /root/.cache && ulimit -c 0 # buildkit
2024-07-13 15:58:23 UTC (buildkit.dockerfile.v0)ARG SOURCE_COMMIT=f47a7881849451c6caa7ebda18a90d77546abbb4
2024-07-13 15:58:37 UTC (buildkit.dockerfile.v0)RUN |4 QL_MAINTAINER=whyour QL_URL=https://github.com/whyour/qinglong.git QL_BRANCH=v2.17.8 SOURCE_COMMIT=f47a7881849451c6caa7ebda18a90d77546abbb4 /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
2024-07-13 16:02:21 UTC (buildkit.dockerfile.v0)COPY /tmp/build/node_modules/. /ql/node_modules/ # buildkit
2024-07-13 16:02:21 UTC (buildkit.dockerfile.v0)WORKDIR /ql
2024-07-13 16:02:21 UTC (buildkit.dockerfile.v0)HEALTHCHECK &{["CMD-SHELL" "curl -sf --noproxy '*' http://127.0.0.1:5400/api/health || exit 1"] "5s" "2s" "0s" "0s" '\x14'}
2024-07-13 16:02:21 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["./docker/docker-entrypoint.sh"]
2024-07-13 16:02:59 UTC
110 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_SHA256ee09098395e42eb1f82ef4acb231a767a6ae85504a9cf9983223df0a7cbd35d7
PYTHON_GET_PIP_URLhttps://github.com/pypa/get-pip/raw/e03e1607ad60522cf34a92e834138eb89f57667c/public/get-pip.py
PYTHON_PIP_VERSION24.0
PYTHON_SETUPTOOLS_VERSION65.5.1
PYTHON_VERSION3.11.9
QL_BRANCHv2.17.8
QL_DIR/ql
SHELL/bin/bash
[#000] sha256:f9a77bce0ddc1b9251f410e8c69566b002f4e557ee68895b558671311b17fd91 - 3.0% (3.3 MB)
[#001] sha256:81372ec9eec545e9af2e05c16da4cf7ebcaa676e104e5924b51839f59c80730c - 0.4% (453 KB)
[#002] sha256:aab83c0eb7e4cf1567b90cb15f59fd608864c0bcbf9febe547a52d51fe491602 - 13.13% (14.4 MB)
[#003] sha256:2cebceefb480d5cdb4080c17f270a5ba2dd72d9d66b2c4f7997e0be93f1fc802 - 0.0% (230 Bytes)
[#004] sha256:5f84db763494557ce976fbe7623080b1d5a59e246d11129138d63dbaca03cd21 - 2.71% (2.99 MB)
[#005] sha256:17301b9ed51be61b03c854d98d03a3dd1f1f0043c8ff39fb2e257bc930122c6b - 11.31% (12.4 MB)
[#006] sha256:d8222914a5ba434bfae56fdfa76195caf62a9bfc426b2221b58a6a193a9f2e9f - 0.0% (3.81 KB)
[#007] sha256:c4879bf81c958c5cd63d2d2c7a231c16d6f4b33f7c87a08fdbed69bb60e94c25 - 42.97% (47.3 MB)
[#008] sha256:cdbd29a9e322ca540f5925fd504f78b5569cefb8953cba2e816e0ba4354a09ba - 8.95% (9.85 MB)
[#009] sha256:7f0f7547350808605f9c8719ab2b7c924bc6d19909357325ffb02d0569a20a1e - 17.53% (19.3 MB)
[#010] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
/bin/sh -c #(nop) ADD file:23eeda2aa519e3b51e03f1ce8faeb8c4b597b4b31ec175cb09306147000967fc in /
2024-06-20 17:42:03 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV LANG=C.UTF-8
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; apk add --no-cache ca-certificates tzdata ; # buildkit
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PYTHON_VERSION=3.11.9
2024-07-07 22:31:37 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 $(test "$gnuArch" != 'riscv64-linux-musl' && echo '--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
2024-07-07 22:31:37 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
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PYTHON_PIP_VERSION=24.0
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PYTHON_SETUPTOOLS_VERSION=65.5.1
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/e03e1607ad60522cf34a92e834138eb89f57667c/public/get-pip.py
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_SHA256=ee09098395e42eb1f82ef4acb231a767a6ae85504a9cf9983223df0a7cbd35d7
2024-07-07 22:31:37 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
2024-07-07 22:31:37 UTC (buildkit.dockerfile.v0)CMD ["python3"]
2024-07-11 17:49:07 UTC (buildkit.dockerfile.v0)ARG QL_MAINTAINER=whyour
2024-07-11 17:49:07 UTC (buildkit.dockerfile.v0)LABEL maintainer=whyour
2024-07-11 17:49:07 UTC (buildkit.dockerfile.v0)ARG QL_URL=https://github.com/whyour/qinglong.git
2024-07-11 17:49:07 UTC (buildkit.dockerfile.v0)ARG QL_BRANCH=v2.17.8
2024-07-11 17:49:07 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.17.8
2024-07-11 17:49:07 UTC (buildkit.dockerfile.v0)VOLUME [/ql/data]
2024-07-11 17:49:07 UTC (buildkit.dockerfile.v0)EXPOSE map[5700/tcp:{}]
2024-07-11 17:49:07 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/node_modules/. /usr/local/lib/node_modules/ # buildkit
2024-07-11 17:49:07 UTC (buildkit.dockerfile.v0)COPY /usr/local/bin/. /usr/local/bin/ # buildkit
2024-07-13 15:58:45 UTC (buildkit.dockerfile.v0)RUN |3 QL_MAINTAINER=whyour QL_URL=https://github.com/whyour/qinglong.git QL_BRANCH=v2.17.8 /bin/sh -c set -x && 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 unzip 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 && rm -rf /root/.pnpm-store && rm -rf /root/.local/share/pnpm/store && rm -rf /root/.cache && ulimit -c 0 # buildkit
2024-07-13 15:58:45 UTC (buildkit.dockerfile.v0)ARG SOURCE_COMMIT=f47a7881849451c6caa7ebda18a90d77546abbb4
2024-07-13 15:58:58 UTC (buildkit.dockerfile.v0)RUN |4 QL_MAINTAINER=whyour QL_URL=https://github.com/whyour/qinglong.git QL_BRANCH=v2.17.8 SOURCE_COMMIT=f47a7881849451c6caa7ebda18a90d77546abbb4 /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
2024-07-13 16:02:59 UTC (buildkit.dockerfile.v0)COPY /tmp/build/node_modules/. /ql/node_modules/ # buildkit
2024-07-13 16:02:59 UTC (buildkit.dockerfile.v0)WORKDIR /ql
2024-07-13 16:02:59 UTC (buildkit.dockerfile.v0)HEALTHCHECK &{["CMD-SHELL" "curl -sf --noproxy '*' http://127.0.0.1:5400/api/health || exit 1"] "5s" "2s" "0s" "0s" '\x14'}
2024-07-13 16:02:59 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.