comparison java-17/Dockerfile @ 472:44123bc3d4d4

USASR-5154 try updating
author belknapSSDT <zach.belknap@mcoecn.org>
date Thu, 28 Sep 2023 15:23:35 -0400
parents e5b896d77861
children 4dff53f5d068
comparison
equal deleted inserted replaced
471:e5b896d77861 472:44123bc3d4d4
1 FROM openjdk:17 1 FROM openjdk:17
2 2
3 MAINTAINER Marc Davis <davis@ssdt-ohio.org> 3 MAINTAINER Marc Davis <davis@ssdt-ohio.org>
4 4
5 RUN apk update && apk add && echo "deb http://httpredir.debian.org/debian stretch main contrib" > /etc/apt/sources.list \ 5 RUN apt update && apt upgrade && echo "deb http://httpredir.debian.org/debian stretch main contrib" > /etc/apt/sources.list \
6 && echo "deb http://security.debian.org/ stretch/updates main contrib" >> /etc/apt/sources.list \ 6 && echo "deb http://security.debian.org/ stretch/updates main contrib" >> /etc/apt/sources.list \
7 && echo "ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true" | debconf-set-selections \ 7 && echo "ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true" | debconf-set-selections \
8 && apt-get update \ 8 && apt-get update \
9 && apt-get install -y ttf-mscorefonts-installer \ 9 && apt-get install -y ttf-mscorefonts-installer \
10 && apt-get clean \ 10 && apt-get clean \