[libc++] Remove dummy command in Dockerfile
authorLouis Dionne <ldionne.2@gmail.com>
Mon, 27 Jun 2022 13:15:28 +0000 (09:15 -0400)
committerLouis Dionne <ldionne.2@gmail.com>
Mon, 27 Jun 2022 13:17:34 +0000 (09:17 -0400)
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.

libcxx/utils/ci/Dockerfile

index 76cb224..f175b70 100644 (file)
@@ -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