From fb0d9d063ce19fe2aa4a9317c7e953c52f59481f Mon Sep 17 00:00:00 2001 From: Kyle Johnson Date: Fri, 14 Mar 2014 12:02:37 -0400 Subject: [PATCH] Added the vlc sourcetype prereqs --- Dockerfile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 32cab3e75..9fcb73060 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,14 +12,17 @@ RUN apt-get update RUN apt-get upgrade -y # Install the prerequisites -RUN apt-get install -y build-essential libmysqlclient-dev libssl-dev libbz2-dev libpcre3-dev libdbi-perl libarchive-zip-perl libdate-manip-perl libdevice-serialport-perl libmime-perl libpcre3 libwww-perl libdbd-mysql-perl libsys-mmap-perl yasm subversion automake autoconf libjpeg-turbo8-dev libjpeg-turbo8 libtheora-dev libvorbis-dev libvpx-dev libx264-dev libmp4v2-dev ffmpeg git wget mysql-client apache2 php5 php5-mysql apache2-mpm-prefork libapache2-mod-php5 php5-cli openssh-server mysql-server +RUN apt-get install -y build-essential libmysqlclient-dev libssl-dev libbz2-dev libpcre3-dev libdbi-perl libarchive-zip-perl libdate-manip-perl libdevice-serialport-perl libmime-perl libpcre3 libwww-perl libdbd-mysql-perl libsys-mmap-perl yasm subversion automake autoconf libjpeg-turbo8-dev libjpeg-turbo8 libtheora-dev libvorbis-dev libvpx-dev libx264-dev libmp4v2-dev ffmpeg git wget mysql-client apache2 php5 php5-mysql apache2-mpm-prefork libapache2-mod-php5 php5-cli openssh-server mysql-server libvlc-dev libvlc5 libvlccore-dev libvlccore5 vlc-data vlc -# Grab the latest ZoneMinder code -RUN git clone https://github.com/ZoneMinder/ZoneMinder.git +# Grab the latest ZoneMinder code in master +RUN git clone https://github.com/kylejohnson/ZoneMinder.git # Change into the ZoneMinder directory WORKDIR ZoneMinder +# Check out the release-1.27 branch +RUN git checkout release-1.27 + # Setup the ZoneMinder build environment RUN aclocal && autoheader && automake --force-missing --add-missing && autoconf