fluffychat/scripts/integration-prepare-host.sh
2023-11-08 12:27:18 -05:00

6 lines
196 B
Bash

#!/usr/bin/env bash
if ! command -v apk &>/dev/null; then
apt update && apt install -y -qq docker.io ldnsutils grep scrcpy ffmpeg
else
apk update && apk add docker drill grep scrcpy ffmpeg
fi