• Home
  • Raw
  • Download

Lines Matching +full:apt +full:- +full:key

12 # Apt source for old Python versions.
13 RUN echo 'deb http://ppa.launchpad.net/fkrull/deadsnakes/ubuntu trusty main' > /etc/apt/sources.lis…
14 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys DB82666C
16 # Apt source for Oracle Java.
17 …launchpad.net/webupd8team/java/ubuntu trusty main' > /etc/apt/sources.list.d/webupd8team-java-trus…
18 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys EEA14886 && \
19 …echo "oracle-java7-installer shared/accepted-oracle-license-v1-1 select true" | debconf-set-select…
21 # Apt source for Mono
22 run echo "deb http://download.mono-project.com/repo/debian wheezy main" | tee /etc/apt/sources.list…
23 …echo "deb http://download.mono-project.com/repo/debian wheezy-libjpeg62-compat main" | tee -a /etc…
24 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
28 RUN apt-get update && apt-get install -y \
30 autotools-dev \
31 build-essential \
38 libc6-dbg \
39 libc6-dev \
40 libgtest-dev \
46 # -- For csharp --
47 mono-devel \
48 referenceassemblies-pcl \
50 # -- For all Java builds -- \
52 # -- For java_jdk6 -- \
53 # oops! not in jessie. too old? openjdk-6-jdk \
54 # -- For java_jdk7 -- \
55 openjdk-7-jdk \
56 # -- For java_oracle7 -- \
57 oracle-java7-installer \
58 # -- For python / python_cpp -- \
59 python-setuptools \
60 python-pip \
61 python-dev \
62 python2.6-dev \
63 python3.3-dev \
64 python3.4-dev \
65 # -- For Ruby --
67 && apt-get clean
72 RUN wget www.nuget.org/NuGet.exe -O /usr/local/bin/nuget.exe
77 # These packages exist in apt-get, but their versions are too old, so we have
80 RUN pip install pip --upgrade
88 RUN gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
89 RUN \curl -sSL https://get.rvm.io | bash -s stable
92 RUN /bin/bash -l -c "rvm install ruby-2.1"
93 RUN /bin/bash -l -c "rvm use --default ruby-2.1"
94 RUN /bin/bash -l -c "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc"
95 RUN /bin/bash -l -c "echo 'export PATH=/usr/local/rvm/bin:$PATH' >> ~/.bashrc"
96 RUN /bin/bash -l -c "echo 'rvm --default use ruby-2.1' >> ~/.bashrc"
97 RUN /bin/bash -l -c "gem install bundler --no-ri --no-rdoc"
105 ENV MVN mvn --batch-mode
112 make -j6 && \
114 $MVN install dependency:go-offline -Dmaven.repo.local=$MAVEN_REPO -P lite && \
115 $MVN install dependency:go-offline -Dmaven.repo.local=$MAVEN_REPO && \
117 $MVN install dependency:go-offline -Dmaven.repo.local=$MAVEN_REPO
122 RUN ln -s /usr/bin/ccache /usr/local/bin/gcc
123 RUN ln -s /usr/bin/ccache /usr/local/bin/g++
124 RUN ln -s /usr/bin/ccache /usr/local/bin/cc
125 RUN ln -s /usr/bin/ccache /usr/local/bin/c++
126 RUN ln -s /usr/bin/ccache /usr/local/bin/clang
127 RUN ln -s /usr/bin/ccache /usr/local/bin/clang++