Mercurial > public > ssdt-docker
comparison tomcat/Dockerfile @ 533:2e67cfae1533 production v2.17.0
flow: Merged <release> '2.17.0' to <master> ('production').
author | Marc Davis <marc.davis@mcoecn.org> |
---|---|
date | Thu, 02 May 2024 22:46:24 -0400 |
parents | 4b026170dfea |
children |
comparison
equal
deleted
inserted
replaced
524:6ddfd364a52a | 533:2e67cfae1533 |
---|---|
1 FROM tomcat:8.5.37-jre8 | 1 FROM tomcat:8.5.51-jdk8 |
2 | 2 |
3 MAINTAINER Dave Smith <smith@nwoca.org> | 3 MAINTAINER Dave Smith <smith@nwoca.org> |
4 | 4 |
5 RUN echo "deb http://httpredir.debian.org/debian jessie main contrib" > /etc/apt/sources.list \ | 5 RUN echo "deb http://deb.debian.org/debian buster main contrib non-free" > /etc/apt/sources.list \ |
6 && echo "deb http://security.debian.org/ jessie/updates main contrib" >> /etc/apt/sources.list \ | 6 && echo "deb http://security.debian.org/debian-security/ buster/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 |
9 RUN apt-get update \ | |
9 && apt-get install -y ttf-mscorefonts-installer \ | 10 && apt-get install -y ttf-mscorefonts-installer \ |
10 && apt-get clean \ | 11 && apt-get clean \ |
11 && apt-get autoremove -y \ | 12 && apt-get autoremove -y \ |
12 && rm -rf /var/lib/apt/lists/* | 13 && rm -rf /var/lib/apt/lists/* |
13 | 14 |