Skip to content

Commit 5731942

Browse files
committed
test(docker-compose): test more tools
1 parent b75508d commit 5731942

File tree

1 file changed

+34
-1
lines changed

1 file changed

+34
-1
lines changed

aws-cli/docker-compose.test.yml

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,37 @@ services:
44
build:
55
context: .
66
dockerfile: Dockerfile
7-
command: "sh -c '[ $$(id -u) -eq 1000 ] && aws --version'"
7+
command: |
8+
sh -c '
9+
set -euo pipefail
10+
if [ $(id -u) -ne 1000 ]; then
11+
exit 1
12+
fi
13+
aws --version # awscli
14+
bash --version # bash
15+
bzip2 --help # bzip2
16+
cfn-policy-validator --version # cfn-policy-validator
17+
curl --version # curl
18+
diff --version # diffutils
19+
find --version # findutils
20+
git --version # git
21+
grep --version # grep
22+
gzip --version # gzip
23+
jq --version # jq
24+
json2yaml --version # json2yaml
25+
make --version # make
26+
patch --version # patch
27+
ping -V # iputils
28+
pip --version # py3-pip
29+
python --version # python3
30+
rsync --version # rsync
31+
sed --version # sed
32+
ssh -V # openssh
33+
tar --version # tar
34+
unzip -h # unzip
35+
wget --version # wget
36+
xz --version # xz
37+
yaml-paths --version # yamlpath
38+
yq --version # yq
39+
zip -h # zip
40+
'

0 commit comments

Comments
 (0)