comparison java/Dockerfile @ 90:63cb9be89a26 production v1.0.0

flow: Merged <release> 'v1.0.0' to <master> ('production').
author smith@nwoca.org
date Thu, 22 Sep 2016 01:49:20 +0100
parents 53671513b240
children a113282d9400
comparison
equal deleted inserted replaced
1:44f401c902ba 90:63cb9be89a26
1 FROM docker.ssdt.io/java:8-jre
2
3 MAINTAINER Dave Smith <smith@nwoca.org>
4
5 RUN echo "ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true" | debconf-set-selections \
6 && echo 'deb http://httpredir.debian.org/debian jessie contrib' > /etc/apt/sources.list.d/jessie-contrib.list \
7 && apt-get update \
8 && apt-get install -y ttf-mscorefonts-installer
9
10 ENV TZ=America/New_York
11
12 RUN echo $TZ > /etc/timezone \
13 && dpkg-reconfigure --frontend noninteractive tzdata