Install docker as well
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Luke Murphy 2021-02-11 20:36:47 +01:00
parent 7da2652bdd
commit f918b88e8d
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 4 additions and 0 deletions

View File

@ -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 \