Mercurial > public > ssdt-docker
annotate java/Dockerfile @ 246:7441285bf326 production v2.0.1
flow: Merged <hotfix> 'v2.0.1' to <master> ('production').
author | smith@nwoca.org |
---|---|
date | Thu, 11 Jan 2018 18:32:51 +0000 |
parents | a113282d9400 |
children | b0b52c426f16 |
rev | line source |
---|---|
114
a113282d9400
DEP-12: update java version and fix ms fonts installer
smith@nwoca.org
parents:
81
diff
changeset
|
1 FROM openjdk:8u121-jdk |
81
53671513b240
DEP-10: add timezone and locale settings. add java base image. add native APR for tomcat
smith@nwoca.org
parents:
diff
changeset
|
2 |
53671513b240
DEP-10: add timezone and locale settings. add java base image. add native APR for tomcat
smith@nwoca.org
parents:
diff
changeset
|
3 MAINTAINER Dave Smith <smith@nwoca.org> |
53671513b240
DEP-10: add timezone and locale settings. add java base image. add native APR for tomcat
smith@nwoca.org
parents:
diff
changeset
|
4 |
114
a113282d9400
DEP-12: update java version and fix ms fonts installer
smith@nwoca.org
parents:
81
diff
changeset
|
5 RUN echo "deb http://httpredir.debian.org/debian jessie main contrib" > /etc/apt/sources.list \ |
a113282d9400
DEP-12: update java version and fix ms fonts installer
smith@nwoca.org
parents:
81
diff
changeset
|
6 && echo "deb http://security.debian.org/ jessie/updates main contrib" >> /etc/apt/sources.list \ |
a113282d9400
DEP-12: update java version and fix ms fonts installer
smith@nwoca.org
parents:
81
diff
changeset
|
7 && echo "ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true" | debconf-set-selections \ |
a113282d9400
DEP-12: update java version and fix ms fonts installer
smith@nwoca.org
parents:
81
diff
changeset
|
8 && apt-get update \ |
a113282d9400
DEP-12: update java version and fix ms fonts installer
smith@nwoca.org
parents:
81
diff
changeset
|
9 && apt-get install -y ttf-mscorefonts-installer \ |
a113282d9400
DEP-12: update java version and fix ms fonts installer
smith@nwoca.org
parents:
81
diff
changeset
|
10 && apt-get clean \ |
a113282d9400
DEP-12: update java version and fix ms fonts installer
smith@nwoca.org
parents:
81
diff
changeset
|
11 && apt-get autoremove -y \ |
a113282d9400
DEP-12: update java version and fix ms fonts installer
smith@nwoca.org
parents:
81
diff
changeset
|
12 && rm -rf /var/lib/apt/lists/* |
81
53671513b240
DEP-10: add timezone and locale settings. add java base image. add native APR for tomcat
smith@nwoca.org
parents:
diff
changeset
|
13 |
53671513b240
DEP-10: add timezone and locale settings. add java base image. add native APR for tomcat
smith@nwoca.org
parents:
diff
changeset
|
14 ENV TZ=America/New_York |
53671513b240
DEP-10: add timezone and locale settings. add java base image. add native APR for tomcat
smith@nwoca.org
parents:
diff
changeset
|
15 |
53671513b240
DEP-10: add timezone and locale settings. add java base image. add native APR for tomcat
smith@nwoca.org
parents:
diff
changeset
|
16 RUN echo $TZ > /etc/timezone \ |
53671513b240
DEP-10: add timezone and locale settings. add java base image. add native APR for tomcat
smith@nwoca.org
parents:
diff
changeset
|
17 && dpkg-reconfigure --frontend noninteractive tzdata |