mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-07-04 23:35:13 -04:00
17 lines
284 B
Plaintext
17 lines
284 B
Plaintext
|
|
#!/usr/bin/with-contenv bash
|
|
|
|
## Ubuntu
|
|
if [ -f /usr/bin/apt ]; then
|
|
apt-get update
|
|
apt-get install --no-install-recommends -y \
|
|
dnsutils \
|
|
net-tools
|
|
fi
|
|
# Alpine
|
|
if [ -f /sbin/apk ]; then
|
|
apk add --no-cache \
|
|
bind-tools \
|
|
net-tools
|
|
fi
|