github.com/pachyderm/pachyderm@v1.13.4/etc/testing/images/ubuntu_with_s3_clients/Dockerfile (about)

     1  FROM ubuntu:18.04
     2  LABEL maintainer=msteffen@pachyderm.io
     3  
     4  RUN apt-get update -y && apt-get install -y \
     5    curl \
     6    python3 \
     7    python3-dev \
     8    python3-setuptools \
     9    groff \
    10    apt-transport-https \
    11    ca-certificates gnupg
    12  RUN python3 -m easy_install pip
    13  RUN pip3 install --upgrade pip
    14  RUN pip3 install awscli --upgrade
    15  RUN curl -L https://dl.min.io/client/mc/release/linux-amd64/mc >/usr/local/bin/mc \
    16    && chmod ugo+x /usr/local/bin/mc
    17  RUN mkdir -p $HOME/.aws \
    18    && printf "[default]\naws_access_key_id = \naws_secret_access_key = " >$HOME/.aws/credentials
    19