From 0ea318004a0e5d4a04a53e0f885a848269456921 Mon Sep 17 00:00:00 2001 From: "Glenn Y. Rolland" Date: Sat, 8 May 2021 17:27:36 +0200 Subject: [PATCH] fix: correct openssh-client installation --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8d1b889..5bcf063 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,9 +19,10 @@ ENV LANG en_US.utf8 ENV GITIT_VERSION 0.12.3.1+dfsg-1 RUN apt-get update \ - && apt-cache policy gitit openssh-client \ + && apt-cache policy gitit \ && apt-get install -y --no-install-recommends \ libghc-filestore-data mime-support gitit=$GITIT_VERSION \ + openssh-client \ && rm -rf /var/lib/apt/lists/* VOLUME ["/data"]