Skip to content

Instantly share code, notes, and snippets.

@deric4
Last active October 5, 2021 17:40
Show Gist options
  • Save deric4/aeb3ce946d2c18aeba8570620cc70dfa to your computer and use it in GitHub Desktop.
Save deric4/aeb3ce946d2c18aeba8570620cc70dfa to your computer and use it in GitHub Desktop.
determining awcli installed
FROM ubuntu:18.04
RUN : \
&& set -eu \
&& apt-get -qq update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -qq -y --no-install-recommends \
build-essential \
curl \
unzip \
groff \
less \
python3 \
python3-pip \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
&& :
RUN : \
&& set -eu \
&& python3 -m pip install -U pip \
&& :
# automatic syntax highlighting doesn't work unless the file name is `Dockerfile`
# adding the vim style modeline fixes that
# vim: syntax=Dockerfile

context

legacy Config Management tools are installing awscli-v1 even if awscli-v2 has been installed by other process

ubuntu18.04

using ubuntu:18.04 docker image

where is awscli installed if installed via pip?

installing awscliv1 with pip

root@c14afa4c9aa5:/# pip install awscli

###
### check awscli version
###
root@c14afa4c9aa5:/# aws --version
aws-cli/1.20.52 Python/3.6.9 Linux/5.10.25-linuxkit botocore/1.21.52

###
### what do the various bash builtins report (type, which, command, etc)
###
root@c14afa4c9aa5:/# type aws
aws is hashed (/usr/local/bin/aws)

root@c14afa4c9aa5:/# which aws
/usr/local/bin/aws


###
### what happens when there are other "aws" installations in different paths 
### 

root@c14afa4c9aa5:/# echo $PATH
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

### 
### /bin/aws : create an executable thats after the real path
###
root@c14afa4c9aa5:~# touch /bin/aws && chmod 755 $_

###
### /usr/local/sbin/aws : create a file thats before the real path
###
root@c14afa4c9aa5:~# touch /usr/local/sbin/aws && chmod 755 $_

###
### /root/aws : create an executable not in real path
###
root@c14afa4c9aa5:~# touch /root/aws && chmod 755 $_

###
### show all installations (note: excutable in /root/aws not include)
###
root@c14afa4c9aa5:~# type -a aws
aws is /usr/local/sbin/aws
aws is /usr/local/bin/aws
aws is /bin/aws

What happens once the awscli-v2 is installed

build the image

$ docker build -t awscli-testing:latest https://git.io/JVEPM

Rabbit Trails to Follow

https://askubuntu.com/questions/838321/whats-the-difference-between-export-p-and-env-commands

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment