[gremlin] Switch to openjdk:8 base

This commit is contained in:
Geoff Bourne
2017-05-02 19:42:47 -05:00
parent fc807429e4
commit dc15094b8a

View File

@@ -1,11 +1,12 @@
FROM itzg/ubuntu-openjdk-7
FROM openjdk:8-jre
LABEL maintainer "itzg"
ENV TITAN_VERSION 0.5.4
RUN wget -q -O /tmp/titan.zip http://s3.thinkaurelius.com/downloads/titan/titan-$TITAN_VERSION-hadoop2.zip
RUN unzip -q /tmp/titan.zip -d /opt && rm /tmp/titan.zip
ADD http://s3.thinkaurelius.com/downloads/titan/titan-$TITAN_VERSION-hadoop2.zip /tmp/titan.zip
RUN unzip -q /tmp/titan.zip -d /opt && \
rm /tmp/titan.zip
ENV TITAN_HOME /opt/titan-$TITAN_VERSION-hadoop2
WORKDIR $TITAN_HOME