From fed405a1e7ab940612b7068cd20e35ce143f7d55 Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Wed, 17 Jun 2015 08:31:33 +0300 Subject: [PATCH] - apt-get failed on Java image, trying Debian instead. --- Dockerfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3154b3c..8abaf8e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,9 @@ -FROM java:8 +#FROM java:8 +FROM debian:stable-backports MAINTAINER Nimrod Adar <nimrod@shore.co.il> -RUN apt-get update && apt-get install -yf phantomjs libicu52 wget && \ -apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* +RUN apt-get update && apt-get install -yf phantomjs libicu52 wget \ +openjdk-8-jre-headless && apt-get clean && \ +rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* COPY silent_install.xml /tmp/silent_install.xml RUN cd /tmp && wget \ http://garr.dl.sourceforge.net/project/sahi/sahi-v5/install_sahi_v50_20141105.jar \ -- GitLab