annotate java-17/Dockerfile @ 511:9ba85a0aa135

USASR-5154 use alpine
author belknapSSDT <zach.belknap@mcoecn.org>
date Fri, 29 Sep 2023 13:02:52 -0400
parents 7ffbb0f123e8
children 8460201c99be
rev   line source
511
9ba85a0aa135 USASR-5154 use alpine
belknapSSDT <zach.belknap@mcoecn.org>
parents: 510
diff changeset
1 FROM openjdk:17-alpine
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
510
7ffbb0f123e8 USASR-5154 list operating system
belknapSSDT <zach.belknap@mcoecn.org>
parents: 509
diff changeset
5 RUN cat /etc/os-release && ls && cd /etc/ && ls && echo "deb http://httpredir.debian.org/debian stretch main contrib" > /etc/apt/sources.list \
484
237618ae3f10 USASR-5154 revert
belknapSSDT <zach.belknap@mcoecn.org>
parents: 483
diff changeset
6 && echo "deb http://security.debian.org/ stretch/updates main contrib" >> /etc/apt/sources.list \
237618ae3f10 USASR-5154 revert
belknapSSDT <zach.belknap@mcoecn.org>
parents: 483
diff changeset
7 && echo "ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true" | debconf-set-selections \
237618ae3f10 USASR-5154 revert
belknapSSDT <zach.belknap@mcoecn.org>
parents: 483
diff changeset
8 && apt-get update \
237618ae3f10 USASR-5154 revert
belknapSSDT <zach.belknap@mcoecn.org>
parents: 483
diff changeset
9 && apt-get install -y ttf-mscorefonts-installer \
237618ae3f10 USASR-5154 revert
belknapSSDT <zach.belknap@mcoecn.org>
parents: 483
diff changeset
10 && apt-get clean \
237618ae3f10 USASR-5154 revert
belknapSSDT <zach.belknap@mcoecn.org>
parents: 483
diff changeset
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
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