2025-04-26 16:23:11 UTC
603 MB
noninteractive
HOSTNAMEsandbox
LANGzh_CN.UTF-8
LANGUAGEzh_CN:zh
LC_ALLzh_CN.UTF-8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
UVI_ARGS[#000] sha256:c7ff1e1c28caf41f7d4d07c56a352f0d85193b99d74a99edeb82ae61674ba899 - 4.81% (29 MB)
[#001] sha256:0fdcee392479b8fe48f862280a67446cfe7c741d9141463f0a2e25ae388e122e - 21.12% (127 MB)
[#002] sha256:dd0a9c27787e4ffa0bbe50f70845a1fd8ebbc5d1f5dfc7e9005445ac0da71cba - 0.0% (4.45 KB)
[#003] sha256:bd246e47b381f8dfd89eba2bc7aef3524b43ab3dfbf5e6f7e92c010fccf3a261 - 17.81% (107 MB)
[#004] sha256:69695a403da4dba2da3a192c3555be1667977142c419e1b2b8eee3707745c816 - 7.66% (46.2 MB)
[#005] sha256:5c9cc667d90a8a53bce3650be15fd599cc4506faa30c9c7abea3e4b868b0bd69 - 32.48% (196 MB)
[#006] sha256:e358ef081b814f27ecd36d69136ff11574a5a4255f24c2650cf410925caff11f - 15.32% (92.4 MB)
[#007] sha256:f3c59a8162e8c0a2c04f717e3b26f6399f51c0f9b5263d6d99ced843045d1938 - 0.0% (93 Bytes)
[#008] sha256:2f2bb75473e7a659d55e72a5d6df5fec2f594c32b5aa241f210d7f5e44973581 - 0.0% (204 Bytes)
[#009] sha256:55e96e9c9b2b7565038a3d52d04ae148d30031f8261262ee2943090378632034 - 0.79% (4.74 MB)
[#010] sha256:10aa3542cc8c1d5c363576ceb60476bce82e9d259c2eb9b60cb9166f46c6f137 - 0.01% (37.9 KB)
[#011] sha256:cb7c30352f0452dfb59543fd3780001d6dcb3d9ff2e53b9fd87abc6fc927d25a - 0.0% (1.44 KB)
/bin/sh -c #(nop) ARG RELEASE
2025-04-07 07:24:14 UTC/bin/sh -c #(nop) ARG LAUNCHPAD_BUILD_ARCH
2025-04-07 07:24:14 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.ref.name=ubuntu
2025-04-07 07:24:14 UTC/bin/sh -c #(nop) LABEL org.opencontainers.image.version=22.04
2025-04-07 07:24:17 UTC/bin/sh -c #(nop) ADD file:433cf0b8353e08be3a6582ad5947c57a66bdbb842ed3095246a1ff6876d157f1 in /
2025-04-07 07:24:18 UTC/bin/sh -c #(nop) CMD ["/bin/bash"]
2025-04-26 15:12:10 UTC (buildkit.dockerfile.v0)ENV DEBIAN_FRONTEND=noninteractive
2025-04-26 15:12:10 UTC (buildkit.dockerfile.v0)ENV HOSTNAME=sandbox
2025-04-26 15:12:10 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c apt-get update && apt-get install -y sudo bc curl wget gnupg software-properties-common xvfb x11vnc xterm socat supervisor websockify && apt-get clean && rm -rf /var/lib/apt/lists/* # buildkit
2025-04-26 15:12:10 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c useradd -m -d /home/ubuntu -s /bin/bash ubuntu && echo "ubuntu ALL=(ALL) NOPASSWD:ALL" > /etc/sudoers.d/ubuntu # buildkit
2025-04-26 15:13:04 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c add-apt-repository ppa:deadsnakes/ppa && apt-get update && apt-get install -y python3.10 python3.10-venv python3.10-dev python3-pip && update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.10 1 && apt-get clean && rm -rf /var/lib/apt/lists/* # buildkit
2025-04-26 15:13:24 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c mkdir -p /etc/apt/keyrings && curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_20.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list && apt-get update && apt-get install -y nodejs && apt-get clean && rm -rf /var/lib/apt/lists/* # buildkit
2025-04-26 15:15:06 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - && echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list && apt-get update && apt-get install -y google-chrome-stable && apt-get clean && rm -rf /var/lib/apt/lists/* # buildkit
2025-04-26 15:15:41 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c apt-get update && apt-get install -y fonts-noto-cjk fonts-noto-color-emoji language-pack-zh-hans locales && locale-gen zh_CN.UTF-8 && apt-get clean && rm -rf /var/lib/apt/lists/* # buildkit
2025-04-26 15:15:41 UTC (buildkit.dockerfile.v0)ENV LANG=zh_CN.UTF-8 LANGUAGE=zh_CN:zh LC_ALL=zh_CN.UTF-8
2025-04-26 15:15:41 UTC (buildkit.dockerfile.v0)WORKDIR /app
2025-04-26 15:15:41 UTC (buildkit.dockerfile.v0)COPY requirements.txt . # buildkit
2025-04-26 15:16:15 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c pip3 install --no-cache-dir -r requirements.txt # buildkit
2025-04-26 16:23:11 UTC (buildkit.dockerfile.v0)COPY . . # buildkit
2025-04-26 16:23:11 UTC (buildkit.dockerfile.v0)COPY supervisord.conf /etc/supervisor/conf.d/app.conf # buildkit
2025-04-26 16:23:11 UTC (buildkit.dockerfile.v0)EXPOSE map[5900/tcp:{} 5901/tcp:{} 8080/tcp:{} 9222/tcp:{}]
2025-04-26 16:23:11 UTC (buildkit.dockerfile.v0)ENV UVI_ARGS=
2025-04-26 16:23:11 UTC (buildkit.dockerfile.v0)ENV CHROME_ARGS=
2025-04-26 16:23:11 UTC (buildkit.dockerfile.v0)CMD ["supervisord" "-n" "-c" "/app/supervisord.conf"]
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.