From c83a3d17f31ccbc7102e9ba4aa646385dea8bb33 Mon Sep 17 00:00:00 2001 From: Anthony Bretaudeau Date: Fri, 24 Nov 2023 14:17:55 +0100 Subject: [PATCH] fix --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index a3ccd31..8a73056 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,13 +8,12 @@ RUN rm -rf /tmp/biomaj-prometheus-multiproc && \ mkdir -p /tmp/biomaj-prometheus-multiproc # Install docker to allow docker execution from process-message -RUN buildDeps='gnupg2 dirmngr software-properties-common' \ +RUN buildDeps='gnupg2 dirmngr' \ && apt-get update \ - && apt-get install -y apt-transport-https curl libcurl4-openssl-dev python3-pycurl python3-setuptools python3-pip git unzip bzip2 ca-certificates jq --no-install-recommends \ + && apt-get install -y apt-transport-https curl libcurl4-openssl-dev python3-pycurl python3-setuptools python3-pip git unzip bzip2 ca-certificates jq $buildDeps --no-install-recommends \ && echo 'deb [arch=amd64] https://download.docker.com/linux/debian buster stable' | tee /etc/apt/sources.list.d/docker.list \ && curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add - \ && apt-get update \ - && apt-get install -y $buildDeps --no-install-recommends \ && apt-get install --no-install-recommends -y docker-ce-cli \ && apt-get purge -y --auto-remove $buildDeps \ && apt-get clean \