You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 satır
602B

  1. FROM ubuntu:18.04
  2. MAINTAINER Ray Burgemeestre
  3. RUN apt-get update && \
  4. apt-get -y install g++ git cmake sudo wget gnupg2 && \
  5. \
  6. echo deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-7 main >> /etc/apt/sources.list && \
  7. echo deb-src http://apt.llvm.org/bionic/ llvm-toolchain-bionic-7 main >> /etc/apt/sources.list && \
  8. wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key|sudo apt-key add - ; \
  9. apt update -y && \
  10. apt-get install -y clang-7 lldb-7 lld-7 && \
  11. apt-get install -y libc++-7-dev libc++-7-dev && \
  12. \
  13. rm -rf /var/lib/apt/lists/*
  14. CMD "/bin/bash"