Skip to content

Commit cde3c56

Browse files
committed
update dockerfiles
1 parent 3848ecf commit cde3c56

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

docker/Dockerfile_i686

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ RUN cd ~/ffmpeg_sources && \
6161
rm -rf ~/openssl_build
6262

6363
RUN cd ~/ffmpeg_sources && \
64-
curl -O -L http://www.nasm.us/pub/nasm/releasebuilds/2.13.02/nasm-2.13.02.tar.bz2 && \
65-
tar -xf nasm-2.13.02.tar.bz2 && cd nasm-2.13.02 && ./autogen.sh && \
64+
curl -O -L http://www.nasm.us/pub/nasm/releasebuilds/2.14.01/nasm-2.14.01.tar.bz2 && \
65+
tar -xf nasm-2.14.01.tar.bz2 && cd nasm-2.14.01 && ./autogen.sh && \
6666
./configure --prefix="$HOME/ffmpeg_build" --bindir="$HOME/bin" && \
6767
make -j$(getconf _NPROCESSORS_ONLN) && \
6868
make install

docker/Dockerfile_x86_64

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ RUN cd ~/ffmpeg_sources && \
6161
rm -rf ~/openssl_build
6262

6363
RUN cd ~/ffmpeg_sources && \
64-
curl -O -L http://www.nasm.us/pub/nasm/releasebuilds/2.13.02/nasm-2.13.02.tar.bz2 && \
65-
tar -xf nasm-2.13.02.tar.bz2 && cd nasm-2.13.02 && ./autogen.sh && \
64+
curl -O -L http://www.nasm.us/pub/nasm/releasebuilds/2.14.01/nasm-2.14.01.tar.bz2 && \
65+
tar -xf nasm-2.14.01.tar.bz2 && cd nasm-2.14.01 && ./autogen.sh && \
6666
./configure --prefix="$HOME/ffmpeg_build" --bindir="$HOME/bin" && \
6767
make -j$(getconf _NPROCESSORS_ONLN) && \
6868
make install

docker/README.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,11 @@
22

33
This folder includes Dockerfiles for extending both ``i686`` and ``x86_64`` manylinux images.
44

5-
The extended images were created to be able to build OpenCV in reasonable time with Travis.
6-
7-
These images have been built locally because the process takes over 1,5 hours with modern i7 processor. The images are hosted at https://quay.io/user/skvark.
5+
The extended images were created to be able to build OpenCV in reasonable time with Travis. The images are hosted at https://quay.io/user/skvark.
86

97
The images have following extra software installed:
108

119
- Qt 4.8.7
1210
- Cmake 3.9.0
13-
- FFmpeg with libvpx (latest snapshots at the build time) and recent openssl
11+
- FFmpeg with libvpx (latest snapshots at the build time) and recent openssl + other FFmpeg dependencies built from sources
1412
- Some missing headers included from more recent Linux to be able to enable V4L / V4L2 support in OpenCV

0 commit comments

Comments
 (0)