2024-10-09 18:01:51 UTC
2.87 GB
compute,utility
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
[#000] sha256:6414378b647780fee8fd903ddb9541d134a1947ce092d08bdeb23a54cb3684ac - 0.96% (28.2 MB)
[#001] sha256:8d2a4ae9756f9edf81bc11701136708f367033cf8e8529e1856fc47309c3d786 - 3.58% (105 MB)
[#002] sha256:0d4a25c83ef1542d530443fe76fd5a85f1511480a893e006a81e78ae473ed4ba - 2.21% (64.8 MB)
[#003] sha256:2f3f25ae85686b2f8171171a0b3524e05d3a3a1454678ca842637b565ceda65b - 93.25% (2.67 GB)
[#004] sha256:a0338d9c66b2aa21395220a1d29e20411b22444b110ce202909f7c1bcad53b69 - 0.0% (99 Bytes)
/bin/sh -c #(nop) ARG RELEASE
2024-09-11 16:25:16 UTC/bin/sh -c #(nop) ARG LAUNCHPAD_BUILD_ARCH
2024-09-11 16:25:16 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.ref.name=ubuntu
2024-09-11 16:25:16 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.version=22.04
2024-09-11 16:25:17 UTC/bin/sh -c #(nop) ADD file:ebe009f86035c175ba244badd298a2582914415cf62783d510eab3a311a5d4e1 in /
2024-09-11 16:25:18 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2024-10-09 17:53:38 UTC (buildkit.dockerfile.v0)ENV NVIDIA_DRIVER_CAPABILITIES=compute,utility
2024-10-09 17:53:38 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c apt update && apt install -y wget build-essential zlib1g-dev libncurses5-dev libgdbm-dev libnss3-dev libssl-dev libreadline-dev libffi-dev libsqlite3-dev libbz2-dev liblzma-dev && apt clean && rm -rf /var/lib/apt/lists/* # buildkit
2024-10-09 17:53:38 UTC (buildkit.dockerfile.v0)ARG PYTHON_VERSION
2024-10-09 18:00:27 UTC (buildkit.dockerfile.v0)RUN |1 PYTHON_VERSION=3.10.15 /bin/sh -c cd /tmp && wget https://www.python.org/ftp/python/${PYTHON_VERSION}/Python-${PYTHON_VERSION}.tgz && tar -xvf Python-${PYTHON_VERSION}.tgz && cd Python-${PYTHON_VERSION} && ./configure --enable-optimizations && make && make install && cd .. && rm Python-${PYTHON_VERSION}.tgz && rm -r Python-${PYTHON_VERSION} && ln -s /usr/local/bin/python3 /usr/local/bin/python && ln -s /usr/local/bin/pip3 /usr/local/bin/pip && python -m pip install --upgrade pip && rm -r /root/.cache/pip # buildkit
2024-10-09 18:00:27 UTC (buildkit.dockerfile.v0)ARG PYTORCH_VERSION
2024-10-09 18:00:27 UTC (buildkit.dockerfile.v0)ARG PYTORCH_VERSION_SUFFIX
2024-10-09 18:00:27 UTC (buildkit.dockerfile.v0)ARG TORCHVISION_VERSION
2024-10-09 18:00:27 UTC (buildkit.dockerfile.v0)ARG TORCHVISION_VERSION_SUFFIX
2024-10-09 18:00:27 UTC (buildkit.dockerfile.v0)ARG TORCHAUDIO_VERSION
2024-10-09 18:00:27 UTC (buildkit.dockerfile.v0)ARG TORCHAUDIO_VERSION_SUFFIX
2024-10-09 18:00:27 UTC (buildkit.dockerfile.v0)ARG PYTORCH_DOWNLOAD_URL
2024-10-09 18:01:51 UTC (buildkit.dockerfile.v0)RUN |8 PYTHON_VERSION=3.10.15 PYTORCH_VERSION=2.2.1 PYTORCH_VERSION_SUFFIX=+cu121 TORCHVISION_VERSION=0.17.1 TORCHVISION_VERSION_SUFFIX=+cu121 TORCHAUDIO_VERSION=2.2.1 TORCHAUDIO_VERSION_SUFFIX=+cu121 PYTORCH_DOWNLOAD_URL=https://download.pytorch.org/whl/cu121/torch_stable.html /bin/sh -c if [ ! $TORCHAUDIO_VERSION ]; then TORCHAUDIO=; else TORCHAUDIO=torchaudio==${TORCHAUDIO_VERSION}${TORCHAUDIO_VERSION_SUFFIX}; fi && if [ ! $PYTORCH_DOWNLOAD_URL ]; then pip install torch==${PYTORCH_VERSION}${PYTORCH_VERSION_SUFFIX} torchvision==${TORCHVISION_VERSION}${TORCHVISION_VERSION_SUFFIX} ${TORCHAUDIO}; else pip install torch==${PYTORCH_VERSION}${PYTORCH_VERSION_SUFFIX} torchvision==${TORCHVISION_VERSION}${TORCHVISION_VERSION_SUFFIX} ${TORCHAUDIO} -f ${PYTORCH_DOWNLOAD_URL}; fi && rm -r /root/.cache/pip # buildkit
2024-10-09 18:01:51 UTC (buildkit.dockerfile.v0)WORKDIR /workspace
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.