cloud-game/scripts/install.sh
Sergey Stepanov fd3f267c64
Update scripts
Docker cache order.
Install missing xauth for xvfb-run.
2021-08-15 20:29:45 +03:00

17 lines
339 B
Bash
Executable file
Vendored

#!/usr/bin/env bash
echo This script should install application dependencies for Debian-based systems
if [ $(id -u) -ne 0 ]
then
echo "error: run with sudo or root"
exit 1
fi
apt-get -qq update
apt-get -qq install --no-install-recommends -y \
libvpx6 \
libx264-160 \
libopus0 \
libgl1-mesa-glx \
xvfb \
xauth