File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# This dockerfile builds a container that pulls down and runs the latest version of Benchmark
2- FROM ubuntu:15 .04
2+ FROM ubuntu:16 .04
33MAINTAINER Simon Bennetts "psiinon@gmail.com"
44
55RUN apt-get update && apt-get clean
6- RUN apt-get install -q -y make automake autoconf gcc g++ openjdk-7-jre-headless openjdk-7-jdk ruby wget curl xmlstarlet unzip git x11vnc xvfb openbox xterm net-tools ruby-dev && apt-get clean
6+ RUN apt-get install -q -y \
7+ make \
8+ automake \
9+ autoconf \
10+ gcc \
11+ g++ \
12+ openjdk-8-jre-headless \
13+ openjdk-8-jdk \
14+ ruby \
15+ curl \
16+ xmlstarlet \
17+ git \
18+ x11vnc \
19+ xvfb \
20+ openbox \
21+ xterm \
22+ net-tools \
23+ ruby-dev \
24+ maven \
25+ && apt-get clean
26+
727RUN apt-get --assume-yes --fix-missing install python-pip x11vnc
828
929RUN mkdir /benchmark
1030WORKDIR /benchmark
11- RUN wget http://archive.apache.org/dist/maven/maven-3/3.2.3/binaries/apache-maven-3.2.3-bin.tar.gz
12- RUN tar -xzf apache-maven-3.2.3-bin.tar.gz
13- RUN cp -R apache-maven-3.2.3 /usr/local
14- RUN ln -s /usr/local/apache-maven-3.2.3/bin/mvn /usr/bin/mvn
1531
1632ENV bench /benchmark/bench.sh
1733RUN echo "#!/bin/sh" > ${bench}
You can’t perform that action at this time.
0 commit comments