diff options
| author | Fuwn <[email protected]> | 2022-08-16 19:31:34 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-08-16 19:31:34 -0700 |
| commit | 2e5c81681b9e01db0015b84887f008874bf16986 (patch) | |
| tree | 57327d9a79aa6124996ef4afd35c6ee5b33f667c | |
| parent | fix(Dockerfile): install gnupg2 before curling llvm (diff) | |
| download | locus-2e5c81681b9e01db0015b84887f008874bf16986.tar.xz locus-2e5c81681b9e01db0015b84887f008874bf16986.zip | |
fix(Dockerfile): update before install
| -rw-r--r-- | Dockerfile | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -13,10 +13,9 @@ RUN cargo install sccache # RUN apt-get update && apt-get install clang-3.9 -y -RUN apt-get install -y gnupg2 +RUN apt-get update && apt-get install -y gnupg2 RUN curl -fsSL https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - \ - && apt-get update \ && apt-get install -y clang RUN cargo install \ |