2024-06-13 17:02:05 +0800
4.84 GB
/usr/lib/jvm/java-8-openjdk-amd64/jre
LANGzh_CN.UTF-8
LC_ALLzh_CN.UTF-8
LD_LIBRARY_PATH/usr/local/lib64:/usr/local/lib:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server/:
PATH/opt/apache-maven-3.8.7/bin:/usr/lib/jvm/java-8-openjdk-amd64/jre/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PYTHONPATH/usr/local/lib64:
[#000] sha256:41af1b5f0f51947706ae712999cf098bef968a7799e7cb4bb2268829e62a6ab3 - 0.51% (25.5 MB)
[#001] sha256:99b70148e14a8a6c005126a18968f358213b2f8ac9b9812b24940c83d3e1b404 - 0.0% (908 Bytes)
[#002] sha256:d125b3873cec05913b8ede8c25a4b7184138ac87d57437c92f68bf8ed9aade3e - 5.99% (297 MB)
[#003] sha256:331481a9a7dc5580766902281011d7e76884e98a1de7eacbbe93d3ff3e1deb70 - 6.72% (333 MB)
[#004] sha256:7b21a3f5d26dbb5cf024b0b908b54b404e80ec2bc627856beac2df328a1469fe - 39.51% (1.91 GB)
[#005] sha256:2943304155a1e5b8086b0fa0671aebb267575f0898c5dabd3cf6e089a97ccb8a - 0.35% (17.4 MB)
[#006] sha256:c5ef71d9f0a1e1a01d2760734f605adce02cff81dca5a3da938148ce800ee7cf - 0.3% (15.1 MB)
[#007] sha256:3c20ca6f376389ae4217bcbd5b00cdccbf0f3770eee53fb509d2d62e3f1603ee - 0.16% (7.96 MB)
[#008] sha256:ded90b354ae35995667c840dbd6447215f9c747178cbb4e3f99bf5390f867503 - 13.38% (663 MB)
[#009] sha256:600c6ae0f08bad76de0d7016c327d132d928f62d2033e610ba73d871157da111 - 13.94% (691 MB)
[#010] sha256:be27efe21039627a68ba47d09b2b533ce90db102953dcb578f00a648bdb9c259 - 0.39% (19.3 MB)
[#011] sha256:40c82b2e406c7addcfa6aba44cb25a2d8b8cc2609fcf20a960e5e366cca75244 - 0.88% (43.7 MB)
[#012] sha256:36d766314aa19379a74ac5f5566df81e854bc6877bc1404314f532e1f1c03ea8 - 17.85% (885 MB)
/bin/sh -c #(nop) ARG RELEASE
2023-05-30 09:32:07 UTC/bin/sh -c #(nop) ARG LAUNCHPAD_BUILD_ARCH
2023-05-30 09:32:07 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.ref.name=ubuntu
2023-05-30 09:32:07 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.version=18.04
2023-05-30 09:32:09 UTC/bin/sh -c #(nop) ADD file:3c74e7e08cbf9a87694ce6fa541af617599680fa54d9e48556fc0fbc120b4a83 in /
2023-05-30 09:32:09 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2024-06-13 15:29:55 +0800 (buildkit.dockerfile.v0)RUN /bin/sh -c rm -rf /et/apt/sources.list && echo "deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic main restricted universe multiverse" >> /etc/apt/sources.list && echo "deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-updates main restricted universe multiverse" >> /etc/apt/sources.list && echo "deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-backports main restricted universe multiverse" >> /etc/apt/sources.list && echo "deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-security main restricted universe multiverse" >> /etc/apt/sources.list # buildkit
2024-06-13 15:31:35 +0800 (buildkit.dockerfile.v0)RUN /bin/sh -c apt-get update && apt-get install -y git ssh gcc g++ make dpkg bzip2 unzip zlib1g-dev libssl-dev openjdk-8-jdk unzip # buildkit
2024-06-13 16:24:37 +0800 (buildkit.dockerfile.v0)RUN /bin/sh -c wget https://tugraph-web.oss-cn-beijing.aliyuncs.com/tugraph/deps/gcc-8.4.0.tar.gz && tar -xvf gcc-8.4.0.tar.gz && cd gcc-8.4.0 && ./contrib/download_prerequisites && mkdir build && cd build && ../configure CFLAGS=-fPIC CXXFLAGS=-fPIC -enable-checking=release -enable-languages=c,c++ -disable-multilib && make -j4 && make install && cp ./x86_64-*-linux-gnu/libstdc++-v3/src/.libs/libstdc++.so.6.0.25 /usr/lib/ && cd /usr/lib && ln -sf libstdc++.so.6.0.25 libstdc++.so.6 && rm -rf /gcc-* && ln -s /usr/local/bin/gcc /usr/local/bin/cc # buildkit
2024-06-13 16:27:56 +0800 (buildkit.dockerfile.v0)RUN /bin/sh -c wget https://tugraph-web.oss-cn-beijing.aliyuncs.com/tugraph/deps/Python-3.6.9.tgz && tar xf Python-3.6.9.tgz && cd Python-3.6.9 && ./configure --prefix=/usr/local && make -j4 && make install && python3 -m pip install --upgrade pip -i https://pypi.antfin-inc.com/simple/ --trusted-host pypi.antfin-inc.com && python3 -m pip install nest_asyncio pexpect requests pytest httpx cython==3.0.0a11 sphinx myst_parser sphinx_panels sphinx_rtd_theme numpy==1.19.5 torch==1.10.2 dgl==1.0.0 ogb pandas==0.24.2 -i https://pypi.antfin-inc.com/simple/ --trusted-host pypi.antfin-inc.com && rm -rf /Python* # buildkit
2024-06-13 16:42:00 +0800 (buildkit.dockerfile.v0)RUN /bin/sh -c wget https://tugraph-web.oss-cn-beijing.aliyuncs.com/tugraph/deps/cmake-3.25.2.tar.gz && tar xf cmake-3.25.2.tar.gz && cd cmake-3.25.2 && ./bootstrap && make -j4 && make install && rm -rf /cmake-3.* # buildkit
2024-06-13 16:52:52 +0800 (buildkit.dockerfile.v0)RUN /bin/sh -c wget https://tugraph-web.oss-cn-beijing.aliyuncs.com/tugraph/deps/boost_1_68_0.tar.gz && wget https://tugraph-web.oss-cn-beijing.aliyuncs.com/tugraph/deps/geometry-extensions.tar.gz && tar xf boost_1_68_0.tar.gz && tar xf geometry-extensions.tar.gz && cd boost_1_68_0 && ./bootstrap.sh --with-libraries=system,random,thread,filesystem,chrono,atomic,date_time,regex,stacktrace,log && ./b2 ${JFLAG} cxxflags="-std=c++17 -fPIC" install && sed -i '513s/BOOST_MPL_ASSERT_MSG((I < 1), INVALID_INDEX,/BOOST_MPL_ASSERT_MSG((I < 1), INVALID_INDEX_,/' /usr/local/include/boost/geometry/index/detail/predicates.hpp && cp -r /extensions /usr/local/include/boost/geometry/ && rm -rf /boost_* /extensions /geometry-extensions.tar.gz # buildkit
2024-06-13 16:52:53 +0800 (buildkit.dockerfile.v0)RUN /bin/sh -c cd opt && wget --no-check-certificate https://tugraph-web.oss-cn-beijing.aliyuncs.com/tugraph/deps/apache-maven-3.8.7-bin.tar.gz && tar xf apache-maven-3.8.7-bin.tar.gz && rm apache-maven-*.tar.gz # buildkit
2024-06-13 16:54:52 +0800 (buildkit.dockerfile.v0)ARG FILEPATH
2024-06-13 16:54:52 +0800 (buildkit.dockerfile.v0)ARG FILENAME
2024-06-13 16:54:52 +0800 (buildkit.dockerfile.v0)RUN |2 FILEPATH=https://lvshan-public.oss-cn-hangzhou-zmf.aliyuncs.com/yongchao.ly/wangjun/docker_auto_dir FILENAME=tugraph-4.3.1-1.x86_64.deb /bin/sh -c wget ${FILEPATH}/${FILENAME} # buildkit
2024-06-13 16:55:59 +0800 (buildkit.dockerfile.v0)RUN |2 FILEPATH=https://lvshan-public.oss-cn-hangzhou-zmf.aliyuncs.com/yongchao.ly/wangjun/docker_auto_dir FILENAME=tugraph-4.3.1-1.x86_64.deb /bin/sh -c dpkg -i ${FILENAME} && rm /${FILENAME} # buildkit
2024-06-13 16:56:01 +0800 (buildkit.dockerfile.v0)RUN |2 FILEPATH=https://lvshan-public.oss-cn-hangzhou-zmf.aliyuncs.com/yongchao.ly/wangjun/docker_auto_dir FILENAME=tugraph-4.3.1-1.x86_64.deb /bin/sh -c wget https://tugraph-web.oss-cn-beijing.aliyuncs.com/tugraph/deps/tugraph-demo.tar.gz && tar xf tugraph-demo.tar.gz && mkdir -p /var/lib/lgraph_demos && cp -r tugraph-demo/movie /var/lib/lgraph_demos/movie && cp -r tugraph-demo/the_three_body /var/lib/lgraph_demos/the_three_body && cp -r tugraph-demo/three_kingdoms /var/lib/lgraph_demos/three_kingdoms && cp -r tugraph-demo/wandering_earth /var/lib/lgraph_demos/wandering_earth && cp tugraph-demo/setup.sh /setup.sh # buildkit
2024-06-13 16:56:14 +0800 (buildkit.dockerfile.v0)RUN |2 FILEPATH=https://lvshan-public.oss-cn-hangzhou-zmf.aliyuncs.com/yongchao.ly/wangjun/docker_auto_dir FILENAME=tugraph-4.3.1-1.x86_64.deb /bin/sh -c wget https://tugraph-web.oss-cn-beijing.aliyuncs.com/tugraph/deps/node-v16.20.0-linux-x64.tar.gz && tar xvf node-v16.20.0-linux-x64.tar.gz && cd node-v16.20.0-linux-x64/ && ln -s /node-v16.20.0-linux-x64/bin/npm /usr/local/bin/ && ln -s /node-v16.20.0-linux-x64/bin/node /usr/local/bin/ && npm config set registry https://registry.npmmirror.com && rm -rf /node-v16.20.0-linux-x64.tar.gz && npm install --global yarn && npm install --global pnpm@8.6.12 && ln -s /node-v16.20.0-linux-x64/lib/node_modules/yarn/bin/yarn /usr/local/bin/yarn && ln -s /node-v16.20.0-linux-x64/bin/pnpm /usr/local/bin/pnpm && yarn config set registry https://registry.npmmirror.com && pnpm config set registry https://registry.npmmirror.com # buildkit
2024-06-13 17:02:05 +0800 (buildkit.dockerfile.v0)RUN |2 FILEPATH=https://lvshan-public.oss-cn-hangzhou-zmf.aliyuncs.com/yongchao.ly/wangjun/docker_auto_dir FILENAME=tugraph-4.3.1-1.x86_64.deb /bin/sh -c cd /usr/local/share/lgraph/tugraph-db-browser && pnpm run bootstrap && pnpm run build # buildkit
2024-06-13 17:02:05 +0800 (buildkit.dockerfile.v0)ENV JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64/jre LD_LIBRARY_PATH=/usr/local/lib64:/usr/local/lib:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server/: PYTHONPATH=/usr/local/lib64: PATH=/opt/apache-maven-3.8.7/bin:/usr/lib/jvm/java-8-openjdk-amd64/jre/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2024-06-13 17:02:05 +0800 (buildkit.dockerfile.v0)ENV LANG=zh_CN.UTF-8
2024-06-13 17:02:05 +0800 (buildkit.dockerfile.v0)ENV LC_ALL=zh_CN.UTF-8
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.