Skip to content

Commit

Permalink
Removing JDK from release image
Browse files Browse the repository at this point in the history
  • Loading branch information
Jim Van Fleet committed Aug 18, 2016
1 parent 2c7504c commit a94fec2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
10 changes: 0 additions & 10 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,6 @@ LABEL ImageName=$imagename
LABEL ImageOS=centos7
LABEL Version=$VERSION

ENV JAVA_VERSION 8u101
ENV BUILD_VERSION b13

RUN wget -nv --no-cookies --no-check-certificate --header "Cookie: oraclelicense=accept-securebackup-cookie" "http://download.oracle.com/otn-pub/java/jdk/$JAVA_VERSION-$BUILD_VERSION/jdk-$JAVA_VERSION-linux-x64.rpm" -O /tmp/jdk-8-linux-x64.rpm && \
yum -y install /tmp/jdk-8-linux-x64.rpm && \
rm -f /tmp/jdk-8-linux-x64.rpm && \
alternatives --install /usr/bin/java jar /usr/java/latest/bin/java 200000 && \
alternatives --install /usr/bin/javaws javaws /usr/java/latest/bin/javaws 200000 && \
alternatives --install /usr/bin/javac javac /usr/java/latest/bin/javac 200000

RUN yum -y install \
apr-devel \
httpd \
Expand Down
4 changes: 2 additions & 2 deletions tests/shibboleth-idp.bats
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ load ../common
[ "$result" != '' ]
}

@test "Contains java" {
@test "Does not contain java" {
run docker run -i $maintainer/$imagename which java
[ "$status" -eq 0 ]
[ "$status" -eq 1 ]
}

@test "Contains tomcat" {
Expand Down

0 comments on commit a94fec2

Please sign in to comment.