18 lines
299 B
Bash
Executable File
18 lines
299 B
Bash
Executable File
#!/bin/bash
|
|
|
|
docker compose exec tests sh -c "
|
|
apt-get update \
|
|
&& apt-get -y install --no-install-suggests \
|
|
curl \
|
|
git-core \
|
|
iproute2 \
|
|
iputils-ping \
|
|
jq \
|
|
libarchive-tools \
|
|
locales \
|
|
python3-yaml \
|
|
ssh \
|
|
sudo \
|
|
tzdata \
|
|
"
|