I'm using these commands in a Dockerfile to add the LLVM Ubuntu package repository:
RUN echo deb http://apt.llvm.org/artful/ llvm-toolchain-artful-6.0 main > \
/etc/apt/sources.list.d/llvm.list && \
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add -
This will add the repository and register the key. However, I'd also like to verify the key using the fingerprint given on the website. How can I extend this command to verify the key?