From 117c69e27888de7ad26d909d7b20ef0657ab08b2 Mon Sep 17 00:00:00 2001 From: Tit Petric Date: Wed, 4 Oct 2023 10:40:07 +0200 Subject: [PATCH] can't remove 'libssh2-1' because it removes git --- ci/images/plugin-compiler/Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ci/images/plugin-compiler/Dockerfile b/ci/images/plugin-compiler/Dockerfile index 8672d9c4d82..cdec62f5147 100644 --- a/ci/images/plugin-compiler/Dockerfile +++ b/ci/images/plugin-compiler/Dockerfile @@ -13,8 +13,10 @@ ENV PLUGIN_SOURCE_PATH=/plugin-source RUN mkdir -p $TYK_GW_PATH $PLUGIN_SOURCE_PATH -RUN apt-get purge -y --allow-remove-essential --auto-remove mercurial ruby-dev 'python*' 'libpython*' openssh-client libssh2-1 -RUN apt-get install -y git +RUN apt-get purge -y mercurial ruby-dev 'python*' 'libpython*' openssh-client + +# Ensure git remains installed (required) +RUN git --version # Update sources list to point to archive.debian.org (EOL) # COPY ci/images/plugin-compiler /tmp/plugin-compiler