File tree 2 files changed +12
-2
lines changed
2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 1
1
FROM quay.io/pypa/manylinux2014_i686:latest
2
2
3
- RUN yum install freetype-devel bzip2-devel curl-devel qt5-qtbase-devel -y
3
+ RUN yum install freetype-devel bzip2-devel curl-devel qt5-qtbase-devel lapack-devel -y
4
4
5
5
RUN mkdir ~/ffmpeg_sources && \
6
6
cd ~/ffmpeg_sources && \
@@ -56,6 +56,16 @@ RUN curl -O -L https://github.com/ccache/ccache/releases/download/v3.7.9/ccache-
56
56
make -j$(getconf _NPROCESSORS_ONLN) && \
57
57
make install
58
58
59
+ RUN curl -O -L https://github.com/Kitware/CMake/releases/download/v3.17.0/cmake-3.17.0.tar.gz && \
60
+ tar -xf cmake-3.17.0.tar.gz && \
61
+ cd cmake-3.17.0 && \
62
+ export MAKEFLAGS=-j$(getconf _NPROCESSORS_ONLN) && \
63
+ ./configure --system-curl && \
64
+ make && \
65
+ make install && \
66
+ cd .. && \
67
+ rm -rf cmake-3.17.0*
68
+
59
69
ENV PKG_CONFIG_PATH /usr/local/lib/pkgconfig:/root/ffmpeg_build/lib/pkgconfig
60
70
ENV LDFLAGS -L/root/ffmpeg_build/lib
61
71
ENV PATH "$HOME/bin:$PATH"
Original file line number Diff line number Diff line change 1
1
FROM quay.io/pypa/manylinux2014_x86_64:latest
2
2
3
- RUN yum install freetype-devel bzip2-devel curl-devel qt5-qtbase-devel -y
3
+ RUN yum install freetype-devel bzip2-devel curl-devel qt5-qtbase-devel lapack-devel -y
4
4
5
5
RUN mkdir ~/ffmpeg_sources && \
6
6
cd ~/ffmpeg_sources && \
You can’t perform that action at this time.
0 commit comments