aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorRuben ten Hove <git@rhtenhove.nl>2020-10-28 10:39:45 +0100
committerRuben ten Hove <git@rhtenhove.nl>2020-10-28 10:39:45 +0100
commit8cdf04ec909d96b64ab786c0b859a0d9ea7c7624 (patch)
tree45e525e01f26a8bbd6af0e6f823a47b99754e4a2 /Dockerfile
parent987ddb72b1f5fb4a55259ddeb6ad67ba0061c73d (diff)
downloadAFLplusplus-8cdf04ec909d96b64ab786c0b859a0d9ea7c7624.tar.gz
quote the source lines
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile8
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 && \