Move docker installation scripts to virtualization/Docker path. Splits out openalpr to seperate script. (#5676)

This commit is contained in:
Michaël Arnauts 2017-02-01 04:02:06 +01:00 committed by Paulus Schoutsen
parent 89ec752064
commit 8247acb7b9
10 changed files with 155 additions and 132 deletions

View file

@ -0,0 +1,16 @@
#!/bin/bash
# Sets up ffmpeg.
# Stop on errors
set -e
PACKAGES=(
ffmpeg
)
# Add jessie-backports
echo "Adding jessie-backports"
echo "deb http://deb.debian.org/debian jessie-backports main" >> /etc/apt/sources.list
apt-get update
apt-get install -y --no-install-recommends -t jessie-backports ${PACKAGES[@]}