From: Louis Dionne Date: Mon, 27 Jun 2022 13:15:28 +0000 (-0400) Subject: [libc++] Remove dummy command in Dockerfile X-Git-Tag: upstream/15.0.7~3453 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d6bfedd8ba73f2c8cf51f0548ff98b2041b25733;p=platform%2Fupstream%2Fllvm.git [libc++] Remove dummy command in Dockerfile It turns out that the Docker images on CI instances are not updated based on what's in this file, but instead when a new image is pushed to ldionne/libcxx-builder on DockerHub. So this is effectively useless. --- diff --git a/libcxx/utils/ci/Dockerfile b/libcxx/utils/ci/Dockerfile index 76cb224..f175b70 100644 --- a/libcxx/utils/ci/Dockerfile +++ b/libcxx/utils/ci/Dockerfile @@ -33,12 +33,6 @@ FROM ubuntu:jammy # Make sure apt-get doesn't try to prompt for stuff like our time zone, etc. ENV DEBIAN_FRONTEND=noninteractive -# This dummy command is meant to be edited from time to time, which causes the -# CI builders to rebuild their copy of the Docker image. This is not a great -# solution, however without that, the CI builders will keep the same cached -# Docker image forever. -RUN echo 6 - RUN apt-get update && apt-get install -y bash curl # Install various tools used by the build or the test suite