Mercurial > public > ssdt-docker
comparison tomcat/Dockerfile @ 527:4b026170dfea
SC-327: update tomcat image to 8.5.51
author | Robin Fronk <robin.fronk@mcoecn.org> |
---|---|
date | Thu, 18 Apr 2024 14:09:02 +0100 |
parents | b0b52c426f16 |
children |
comparison
equal
deleted
inserted
replaced
526:cb688221b17b | 527:4b026170dfea |
---|---|
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 |