This image is a wrapper for the Amazon command-line interface. The source of the aws-cli can be found here.
The latest version is 0.0.7 and has a total size of 98MB.
$ docker pull jepmam/aws-cli:latest$ make docker-buildIf you want to test whether everything is working fine and/or you want to use the current working version of your build, use the following command:
$ docker run -it --rm --name buildtest $(make get-buildname --quiet) --versionIf you need access to the shell of the image, you can access it by using the following sequence:
$ docker run -it --rm --name buildtest --entrypoint=sh $(make get-buildname --quiet) -lCreate alias in your ~/.bash_profile to attach the aws-cli CLI onto the container.
alias aws-cli='docker run --rm -ti -v $(pwd):/data:rw -w /data jepmam/aws-cli:latest $@'