Mercurial > public > ssdt-docker
comparison java/Dockerfile @ 81:53671513b240
DEP-10: add timezone and locale settings. add java base image. add native APR for tomcat
author | smith@nwoca.org |
---|---|
date | Mon, 11 Apr 2016 17:46:42 -0400 |
parents | |
children | a113282d9400 |
comparison
equal
deleted
inserted
replaced
80:5c093612ce89 | 81:53671513b240 |
---|---|
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 |