diff --git a/context/Dockerfile b/context/Dockerfile index c6a8d54ddec3af4981fee5ef4df3f18a5909566a..622c9dcc3f364cd93d4775590149ed91c7c0d5ca 100644 --- a/context/Dockerfile +++ b/context/Dockerfile @@ -7,7 +7,11 @@ RUN echo "deb http://security.debian.org/ buster/updates main" >> /etc/apt/sourc RUN apt-get update \ && apt-get -y --no-install-recommends install \ - s3cmd \ + python-pip \ + && pip install s3cmd + && s3cmd --version + && apt-get remove -y python-pip + && apt-get autoremove -y && apt-get clean \ && rm -rf /var/lib/apt/lists/*