Skip to content

Instantly share code, notes, and snippets.

@Clcanny
Last active May 15, 2017 17:24
Show Gist options
  • Save Clcanny/bb7eec08b92a4aa55d31d3181752fa26 to your computer and use it in GitHub Desktop.
Save Clcanny/bb7eec08b92a4aa55d31d3181752fa26 to your computer and use it in GitHub Desktop.
为Sword编程语言准备的开发环境
FROM cppvimgtest:latest
ADD sources.list /etc/apt/sources.list
RUN gpg --keyserver pgpkeys.mit.edu --recv-key 15CF4D18AF4F7421
RUN gpg -a --export 15CF4D18AF4F7421 | apt-key add -
RUN apt-get update
RUN apt-get install -y llvm
deb http://mirrors.163.com/debian/ jessie main non-free contrib
deb http://mirrors.163.com/debian/ jessie-updates main non-free contrib
deb http://mirrors.163.com/debian/ jessie-backports main non-free contrib
deb-src http://mirrors.163.com/debian/ jessie main non-free contrib
deb-src http://mirrors.163.com/debian/ jessie-updates main non-free contrib
deb-src http://mirrors.163.com/debian/ jessie-backports main non-free contrib
deb http://mirrors.163.com/debian-security/ jessie/updates main non-free contrib
deb-src http://mirrors.163.com/debian-security/ jessie/updates main non-free contrib
deb http://apt.llvm.org/jessie/ llvm-toolchain-jessie main
deb-src http://apt.llvm.org/jessie/ llvm-toolchain-jessie main
deb http://apt.llvm.org/jessie/ llvm-toolchain-jessie-4.0 main
deb-src http://apt.llvm.org/jessie/ llvm-toolchain-jessie-4.0 main
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment