From dd6e577892593ea3b676843df39501daf6c02981 Mon Sep 17 00:00:00 2001 From: Glenn Date: Mon, 28 Aug 2023 17:44:14 +0200 Subject: [PATCH] feat: Bump debian & gitit versions --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5bcf063..c181ecc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ ## Dockerfile for gitit -FROM debian:buster-slim +FROM debian:bookworm-slim MAINTAINER Glenn Y. Rolland ENV DEBIAN_FRONTEND noninteractive @@ -8,7 +8,7 @@ ENV DEBIAN_FRONTEND noninteractive ## make the "en_US.UTF-8" locale ## RUN apt-get update \ - && apt-get install -y locales \ + && apt-get install -y --no-install-recommends locales \ && rm -rf /var/lib/apt/lists/* \ && localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8 ENV LANG en_US.utf8 @@ -16,7 +16,7 @@ ENV LANG en_US.utf8 ## ## install gitit ## -ENV GITIT_VERSION 0.12.3.1+dfsg-1 +ENV GITIT_VERSION 0.15.1.0+dfsg-2+b5 RUN apt-get update \ && apt-cache policy gitit \