From f918b88e8d3aea1822fdcc34cd2f0f7f6ccaf395 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Thu, 11 Feb 2021 20:36:47 +0100 Subject: [PATCH] Install docker as well --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 233650f..b5dae8b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,6 +7,7 @@ ENV DEBIAN_FRONTEND noninteractive RUN apt-get update \ && apt-get install -y --no-install-recommends \ build-essential \ +curl \ libffi-dev \ libssl-dev \ openssh-client \ @@ -21,6 +22,9 @@ wget \ && rm -Rf /usr/share/doc && rm -Rf /usr/share/man \ && apt-get clean +RUN \ +curl -fsSL https://get.docker.com | bash + RUN \ python3 -m pip install -U \ pip \