Mercurial > public > ssdt-docker
annotate java-17/Dockerfile @ 552:ef664849a72a
add &&
author | belknapSSDT <zach.belknap@mcoecn.org> |
---|---|
date | Thu, 23 May 2024 10:58:59 -0400 |
parents | eb70cc84cfb0 |
children | eae4a6205738 |
rev | line source |
---|---|
512
8460201c99be
USASR-5154 use buster
belknapSSDT <zach.belknap@mcoecn.org>
parents:
511
diff
changeset
|
1 FROM openjdk:17-buster |
510
7ffbb0f123e8
USASR-5154 list operating system
belknapSSDT <zach.belknap@mcoecn.org>
parents:
509
diff
changeset
|
2 |
426
bb2b3172d497
USASR-5154 updated email
belknapSSDT <zach.belknap@mcoecn.org>
parents:
425
diff
changeset
|
3 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
|
4 |
516 | 5 RUN ls && echo "deb http://deb.debian.org/debian buster main contrib" > /etc/apt/sources.list \ |
513
b25d03a02977
USASR-5154 use buster
belknapSSDT <zach.belknap@mcoecn.org>
parents:
512
diff
changeset
|
6 && echo "deb http://security.debian.org/debian-security/ buster/updates main contrib" >> /etc/apt/sources.list \ |
484 | 7 && echo "ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true" | debconf-set-selections \ |
8 && apt-get update \ | |
9 && apt-get install -y ttf-mscorefonts-installer \ | |
10 && apt-get clean \ | |
11 && apt-get autoremove -y \ | |
114
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 |
550 | 14 |
15 ONBUILD SHELL ["cmd", "/S", "/C"] | |
16 ONBUILD RUN --add-exports=java.xml/com.sun.org.apache.xml.internal.serialize=ALL-UNNAMED | |
549 | 17 |
81
53671513b240
DEP-10: add timezone and locale settings. add java base image. add native APR for tomcat
smith@nwoca.org
parents:
diff
changeset
|
18 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
|
19 |
53671513b240
DEP-10: add timezone and locale settings. add java base image. add native APR for tomcat
smith@nwoca.org
parents:
diff
changeset
|
20 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
|
21 && dpkg-reconfigure --frontend noninteractive tzdata |