Dockerfile_i686 4.2 KB
Newer Older
O
Olli-Pekka Heinisuo 已提交
1 2
FROM quay.io/pypa/manylinux1_i686:latest

3
RUN curl -O -L https://download.qt.io/archive/qt/4.8/4.8.7/qt-everywhere-opensource-src-4.8.7.tar.gz && \
O
Olli-Pekka Heinisuo 已提交
4 5
	tar -xf qt-everywhere-opensource-src-4.8.7.tar.gz && \
	cd qt-everywhere* && \
6 7
	./configure -prefix /opt/Qt4.8.7 -release -opensource -confirm-license && \
	gmake -j5 && \
O
Olli-Pekka Heinisuo 已提交
8 9 10 11 12 13 14 15
	gmake install && \
	cd .. && \
	rm -rf qt-everywhere-opensource-src-4.8.7 && \
	rm qt-everywhere-opensource-src-4.8.7.tar.gz

ENV QTDIR /opt/Qt4.8.7
ENV PATH "$QTDIR/bin:$PATH"

16
RUN curl -O -L https://cmake.org/files/v3.9/cmake-3.9.0.tar.gz && \
17
	tar -xf cmake-3.9.0.tar.gz && \
O
Olli-Pekka Heinisuo 已提交
18
	cd cmake-3.9.0 && \
19 20 21 22
    true '#manylinux1 provides curl-devel equivalent and libcurl statically linked \
         against the same newer OpenSSL as other source-built tools \
         (1.0.2s as of this writing)' && \
	yum -y install zlib-devel && \
O
Olli-Pekka Heinisuo 已提交
23
	./configure --system-curl && \
24
	make -j4 && \
O
Olli-Pekka Heinisuo 已提交
25 26 27 28
	make install && \
	cd .. && \
	rm -rf cmake-3.9.0*

29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
# https://trac.ffmpeg.org/wiki/CompilationGuide/Centos#GettheDependencies
# manylinux provides the toolchain and git; we provide cmake
RUN yum install freetype-devel bzip2-devel zlib-devel -y && \
    mkdir ~/ffmpeg_sources

# Newer openssl configure requires newer perl
RUN curl -O -L https://www.cpan.org/src/5.0/perl-5.20.1.tar.gz && \
	tar -xf perl-5.20.1.tar.gz && \
	cd perl-5.20.1 && \
	./Configure -des -Dprefix="$HOME/openssl_build" && \
	true '#perl build scripts do much redundant work \
	     if running "make install" separately' && \
	make install -j4 && \
	cd .. && \
	rm -rf perl-5.20.1*

RUN cd ~/ffmpeg_sources && \
	curl -O -L https://github.com/openssl/openssl/archive/OpenSSL_1_1_1c.tar.gz && \
	tar -xf OpenSSL_1_1_1c.tar.gz && \
	cd openssl-OpenSSL_1_1_1c && \
    true '#in i686, ./config detects x64 in i686 without linux32 \
         when run from "docker build"' && \
	PERL="$HOME/openssl_build/bin/perl" linux32 ./config --prefix="$HOME/ffmpeg_build" --openssldir="$HOME/ffmpeg_build" shared zlib && \
	make -j4 && \
    true '#skip installing documentation' && \
	make install_sw && \
    rm -rf ~/openssl_build

RUN cd ~/ffmpeg_sources && \
O
Olli-Pekka Heinisuo 已提交
58
	curl -O -L http://www.nasm.us/pub/nasm/releasebuilds/2.13.02/nasm-2.13.02.tar.bz2 && \
59
	tar -xf nasm-2.13.02.tar.bz2 && cd nasm-2.13.02 && ./autogen.sh && \
O
Olli-Pekka Heinisuo 已提交
60 61
	./configure --prefix="$HOME/ffmpeg_build" --bindir="$HOME/bin" && \
	make -j4 && \
62 63 64
	make install

RUN cd ~/ffmpeg_sources && \
O
Olli-Pekka Heinisuo 已提交
65
	curl -O -L http://www.tortall.net/projects/yasm/releases/yasm-1.3.0.tar.gz && \
66
	tar -xf yasm-1.3.0.tar.gz && \
O
Olli-Pekka Heinisuo 已提交
67 68 69
	cd yasm-1.3.0 && \
	./configure --prefix="$HOME/ffmpeg_build" --bindir="$HOME/bin" && \
	make -j4 && \
70 71 72
	make install

RUN cd ~/ffmpeg_sources && \
O
Olli-Pekka Heinisuo 已提交
73 74 75 76
	git clone --depth 1 https://chromium.googlesource.com/webm/libvpx.git && \
	cd libvpx && \
	./configure --prefix="$HOME/ffmpeg_build" --disable-examples --disable-unit-tests --enable-vp9-highbitdepth --as=yasm --enable-pic --enable-shared && \
	make -j4 && \
77 78 79
	make install

RUN cd ~/ffmpeg_sources && \
O
Olli-Pekka Heinisuo 已提交
80
	curl -O -L https://ffmpeg.org/releases/ffmpeg-snapshot.tar.bz2 && \
81
	tar -xf ffmpeg-snapshot.tar.bz2 && \
O
Olli-Pekka Heinisuo 已提交
82 83
	cd ffmpeg && \
	PATH=~/bin:$PATH && \
84
	PKG_CONFIG_PATH="$HOME/ffmpeg_build/lib/pkgconfig" ./configure --prefix="$HOME/ffmpeg_build" --extra-cflags="-I$HOME/ffmpeg_build/include" --extra-ldflags="-L$HOME/ffmpeg_build/lib" --enable-openssl --enable-libvpx --enable-shared --enable-pic --bindir="$HOME/bin" && \
O
Olli-Pekka Heinisuo 已提交
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
	make -j4 && \
	make install && \
	echo "/root/ffmpeg_build/lib/" >> /etc/ld.so.conf && \
	ldconfig && \
	rm -rf ~/ffmpeg_sources

ENV PKG_CONFIG_PATH /usr/local/lib/pkgconfig:/root/ffmpeg_build/lib/pkgconfig
ENV LDFLAGS -L/root/ffmpeg_build/lib

RUN curl -O https://raw.githubusercontent.com/torvalds/linux/v4.14/include/uapi/linux/videodev2.h && \
	curl -O https://raw.githubusercontent.com/torvalds/linux/v4.14/include/uapi/linux/v4l2-common.h && \
	curl -O https://raw.githubusercontent.com/torvalds/linux/v4.14/include/uapi/linux/v4l2-controls.h && \
	curl -O https://raw.githubusercontent.com/torvalds/linux/v4.14/include/linux/compiler.h && \
	mv videodev2.h v4l2-common.h v4l2-controls.h compiler.h /usr/include/linux

100 101 102
#in i686, yum metadata ends up with slightly wrong timestamps
#which inhibits its update
#https://github.com/skvark/opencv-python/issues/148
Y
Your Name 已提交
103 104 105
RUN yum clean all

ENV PATH "$HOME/bin:$PATH"