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 \