Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Pipelines - aws: command not found

Augusto Cordero February 27, 2019

I'm trying to install AWS CLI using pipelines with the following commands :


# Installe and init AWS CLI
- apt-get update && apt-get install -y python-dev
- curl -O https://bootstrap.pypa.io/get-pip.py
- python get-pip.py
- pip install --upgrade --user awscli

Then when I run : 

aws --version

Throws this error  

bash: aws: command not found

 

Any help?

2 answers

1 accepted

2 votes
Answer accepted
edwin
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 28, 2019

Hi @Augusto Cordero ,

Install awscli from apt

- apt-get update && apt-get install -y awscli
- aws --version
Augusto Cordero February 28, 2019

Thanks, it works for me.

Augusto Cordero February 28, 2019

It seems that the version installed with this command is not the latest version and cannot handle the aws commands : ecr and ecs, which are what I need.

edwin
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 28, 2019

I would then recommend using Python 3

- apt-get update && apt-get install -y python3-pip 
- pip3 install -U awscli
- aws --version
Augusto Cordero February 28, 2019

Ok, with this version the commands are working properly. Thanks.

AJ Steers May 15, 2019

Edwin - Do you have another base image for builds you can recommend that already contains the aws CLI?

edwin
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
May 16, 2019

Hi @AJ Steers ,

If all your doing is running awscli commands in the image, then i would recommend a lightweight alpine image .. governmentpaas/awscli - which is based on governmentpaas/curl-ssl

More options - awscli docker hub

Like AJ Steers likes this
AJ Steers May 16, 2019

Thanks very much! I'm also looking for python3.5+ so I might just have to roll my own image to get both. I did a quick search on dockerhub but nothing popped up.

AJ Steers May 30, 2019

I did end up building my own image `aaronsteers/builder:python3.7-aws`. I've setup automated build and made the image public on dockerhub.com:

Like ktomk likes this
Crafton March 26, 2020

Atlassian also has an alpine image for the awscli: https://hub.docker.com/r/atlassian/pipelines-awscli

Like edwin likes this
Aruna August 17, 2022

Thank you... after 16hrs i found this

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events