diff options
author | Ruben ten Hove <git@rhtenhove.nl> | 2020-10-28 10:39:45 +0100 |
---|---|---|
committer | Ruben ten Hove <git@rhtenhove.nl> | 2020-10-28 10:39:45 +0100 |
commit | 8cdf04ec909d96b64ab786c0b859a0d9ea7c7624 (patch) | |
tree | 45e525e01f26a8bbd6af0e6f823a47b99754e4a2 | |
parent | 987ddb72b1f5fb4a55259ddeb6ad67ba0061c73d (diff) | |
download | afl++-8cdf04ec909d96b64ab786c0b859a0d9ea7c7624.tar.gz |
quote the source lines
-rw-r--r-- | Dockerfile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Dockerfile b/Dockerfile index f305554d..6e932fdc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,10 +26,10 @@ RUN apt-get update && \ gnuplot-nox \ && rm -rf /var/lib/apt/lists/* -RUN echo deb http://apt.llvm.org/focal/ llvm-toolchain-focal-11 main >> /etc/apt/sources.list && \ - wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - - -RUN echo deb http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu focal main >> /etc/apt/sources.list && \ +RUN echo "deb http://apt.llvm.org/focal/ llvm-toolchain-focal-11 main" >> /etc/apt/sources.list && \ + wget -qO - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - + +RUN echo "deb http://ppa.launchpad.net/ubuntu-toolchain-r/test/ubuntu focal main" >> /etc/apt/sources.list && \ apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 1E9377A2BA9EF27F RUN apt-get update && apt-get full-upgrade -y && \ |