Skip to content

Commit 3891b24

Browse files
vpavicwilkinsona
authored andcommitted
Update launch script integration tests
- Use the latest Docker image for Ubuntu 14.04 LTS based tests - Add Ubuntu 16.04 LTS based tests Closes gh-5868
1 parent 4b93a23 commit 3891b24

File tree

2 files changed

+12
-2
lines changed
  • spring-boot-integration-tests/spring-boot-launch-script-tests/src/test/resources/conf/Ubuntu

2 files changed

+12
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM ubuntu:trusty-20160503.1
2+
RUN apt-get update && \
3+
apt-get install -y software-properties-common && \
4+
add-apt-repository ppa:webupd8team/java -y && \
5+
apt-get update && \
6+
echo oracle-java7-installer shared/accepted-oracle-license-v1-1 select true | /usr/bin/debconf-set-selections && \
7+
apt-get install -y oracle-java8-installer && \
8+
apt-get install -y curl && \
9+
apt-get clean
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
FROM ubuntu:trusty-20160317
2-
RUN apt-get install -y software-properties-common && \
1+
FROM ubuntu:xenial-20160503
2+
RUN apt-get update && \
3+
apt-get install -y software-properties-common && \
34
add-apt-repository ppa:webupd8team/java -y && \
45
apt-get update && \
56
echo oracle-java7-installer shared/accepted-oracle-license-v1-1 select true | /usr/bin/debconf-set-selections && \

0 commit comments

Comments
 (0)