Mercurial > public > ssdt-docker
annotate java-17/Dockerfile @ 491:3d188208caaf
USASR-5154 removed installs
author | belknapSSDT <zach.belknap@mcoecn.org> |
---|---|
date | Fri, 29 Sep 2023 10:00:07 -0400 |
parents | 237618ae3f10 |
children | cd2fb1609cab |
rev | line source |
---|---|
478
8b3b95d8167d
USASR-5154 check version
belknapSSDT <zach.belknap@mcoecn.org>
parents:
475
diff
changeset
|
1 FROM openjdk:17 |
426
bb2b3172d497
USASR-5154 updated email
belknapSSDT <zach.belknap@mcoecn.org>
parents:
425
diff
changeset
|
2 MAINTAINER Marc Davis <davis@ssdt-ohio.org> |
81
53671513b240
DEP-10: add timezone and locale settings. add java base image. add native APR for tomcat
smith@nwoca.org
parents:
diff
changeset
|
3 |
484 | 4 RUN echo "deb http://httpredir.debian.org/debian stretch main contrib" > /etc/apt/sources.list \ |
5 && echo "deb http://security.debian.org/ stretch/updates main contrib" >> /etc/apt/sources.list \ | |
6 && echo "ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true" | debconf-set-selections \ | |
7 && apt-get update \ | |
8 && apt-get install -y ttf-mscorefonts-installer \ | |
9 && apt-get clean \ | |
10 && apt-get autoremove -y \ | |
114
a113282d9400
DEP-12: update java version and fix ms fonts installer
smith@nwoca.org
parents:
81
diff
changeset
|
11 && 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
|
12 |
53671513b240
DEP-10: add timezone and locale settings. add java base image. add native APR for tomcat
smith@nwoca.org
parents:
diff
changeset
|
13 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
|
14 |
53671513b240
DEP-10: add timezone and locale settings. add java base image. add native APR for tomcat
smith@nwoca.org
parents:
diff
changeset
|
15 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
|
16 && dpkg-reconfigure --frontend noninteractive tzdata |