Mercurial > public > ssdt-docker
diff java/Dockerfile @ 163:daf91a3bbee5 production v1.2.0
flow: Merged <release> 'v1.2.0' to <master> ('production').
author | smith@nwoca.org |
---|---|
date | Tue, 15 Aug 2017 21:59:23 +0100 |
parents | a113282d9400 |
children | b0b52c426f16 |
line wrap: on
line diff
--- a/java/Dockerfile Fri Jun 16 17:14:15 2017 +0100 +++ b/java/Dockerfile Tue Aug 15 21:59:23 2017 +0100 @@ -1,11 +1,15 @@ -FROM docker.ssdt.io/java:8-jre +FROM openjdk:8u121-jdk MAINTAINER Dave Smith <smith@nwoca.org> -RUN echo "ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true" | debconf-set-selections \ - && echo 'deb http://httpredir.debian.org/debian jessie contrib' > /etc/apt/sources.list.d/jessie-contrib.list \ - && apt-get update \ - && apt-get install -y ttf-mscorefonts-installer +RUN echo "deb http://httpredir.debian.org/debian jessie main contrib" > /etc/apt/sources.list \ + && echo "deb http://security.debian.org/ jessie/updates main contrib" >> /etc/apt/sources.list \ + && echo "ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true" | debconf-set-selections \ + && apt-get update \ + && apt-get install -y ttf-mscorefonts-installer \ + && apt-get clean \ + && apt-get autoremove -y \ + && rm -rf /var/lib/apt/lists/* ENV TZ=America/New_York