Merge branch '1.3.x'

This commit is contained in:
Andy Wilkinson 2016-05-09 11:51:57 +01:00
commit 5d2177038f
3 changed files with 13 additions and 3 deletions

View File

@ -36,7 +36,7 @@
<dependency>
<groupId>com.github.docker-java</groupId>
<artifactId>docker-java</artifactId>
<version>2.2.2</version>
<version>2.2.3</version>
<scope>test</scope>
</dependency>
<dependency>

View File

@ -0,0 +1,9 @@
FROM ubuntu:trusty-20160503.1
RUN apt-get update && \
apt-get install -y software-properties-common && \
add-apt-repository ppa:webupd8team/java -y && \
apt-get update && \
echo oracle-java7-installer shared/accepted-oracle-license-v1-1 select true | /usr/bin/debconf-set-selections && \
apt-get install -y oracle-java8-installer && \
apt-get install -y curl && \
apt-get clean

View File

@ -1,5 +1,6 @@
FROM ubuntu:trusty-20160317
RUN apt-get install -y software-properties-common && \
FROM ubuntu:xenial-20160503
RUN apt-get update && \
apt-get install -y software-properties-common && \
add-apt-repository ppa:webupd8team/java -y && \
apt-get update && \
echo oracle-java7-installer shared/accepted-oracle-license-v1-1 select true | /usr/bin/debconf-set-selections && \