This document discusses setting up the AWS CLI and mounting volumes for an API container. It installs Python, gets Pip, and uses Pip to install the AWS CLI. It then lists several volume mounts, including mounting local storage for MySQL, mounting AWS credentials, and mounting an application and storage for an API.
25. # aws cli
RUN apt-get -y install python2.7
RUN ln -s /usr/bin/python2.7 /usr/bin/python
RUN wget https://bootstrap.pypa.io/get-pip.py
RUN python get-pip.py
RUN pip install awscli