1
0
mirror of https://github.com/elisspace/core.git synced 2026-09-01 00:44:04 +00:00
Files
core/virtualization/Docker/scripts/ffmpeg
2018-05-26 08:34:56 -04:00

12 lines
137 B
Bash
Executable File

#!/bin/bash
# Sets up ffmpeg.
# Stop on errors
set -e
PACKAGES=(
ffmpeg
)
apt-get install -y --no-install-recommends ${PACKAGES[@]}