Mercurial > public > ssdt-docker
changeset 506:cabf3353a359
USASR-5154 remove force
author | belknapSSDT <zach.belknap@mcoecn.org> |
---|---|
date | Fri, 29 Sep 2023 12:30:04 -0400 |
parents | 44670d46da7b |
children | 0f62d58b0263 |
files | tomcat-17/Dockerfile |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/tomcat-17/Dockerfile Fri Sep 29 12:20:57 2023 -0400 +++ b/tomcat-17/Dockerfile Fri Sep 29 12:30:04 2023 -0400 @@ -8,7 +8,7 @@ && apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 871920D1991BC93C && apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 112695A0E562B32A \ && apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys AA8E81B4331F7F50 && apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 04EE7237B7D453EC 648ACFD622F3D138 0E98404D386FA1D9 EF0F382A1A7B6500 -RUN apt-get update && apt-get install -y x11-common && apt-get -f install -y libncurses-dev +RUN apt-get update && apt-get install -y x11-common && apt-get install -y libncurses-dev RUN echo "deb http://deb.debian.org/debian buster main contrib non-free" > /etc/apt/sources.list \ && echo "deb http://security.debian.org/debian-security/ buster/updates main contrib" >> /etc/apt/sources.list \ @@ -22,7 +22,7 @@ && rm -rf /var/lib/apt/lists/* RUN apt-get update \ - && apt-get -f install -y postgresql-client \ + && apt-get install -y postgresql-client \ && apt-get clean \ && apt-get autoremove -y \ && rm -rf /var/lib/apt/lists/*