Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dockerfile not working on aarch64 platform #146

Open
wasinix opened this issue Feb 27, 2022 · 0 comments
Open

Dockerfile not working on aarch64 platform #146

wasinix opened this issue Feb 27, 2022 · 0 comments

Comments

@wasinix
Copy link

wasinix commented Feb 27, 2022

First thanks for this great piece of software.
Only one small thing I noticed and want to inform you about:
I was not able to build docker image with the the given Dockerfile on ARM/aarch64
Adding download of newer config.guess version for the argtable buld did solve my issue:

--- a/Dockerfile
+++ b/Dockerfile
@@ -6,11 +6,14 @@ RUN apk --no-cache add python ffmpeg tzdata bash \
 && apk --no-cache add --virtual=builddeps autoconf automake libtool git ffmpeg-dev wget tar build-base \
 && wget http://prdownloads.sourceforge.net/argtable/argtable2-13.tar.gz \
 && tar xzf argtable2-13.tar.gz \
-&& cd argtable2-13/ && ./configure && make && make install \
+&& cd argtable2-13/ \
+&& wget -O config.guess "http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.guess" \
+&& wget -O config.sub "http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.sub" \
+&& ./configure && make && make install \
 && cd /tmp && git clone git://github.com/erikkaashoek/Comskip.git \
 && cd Comskip && ./autogen.sh && ./configure && make && make install \
 && apk del builddeps \
 && rm -rf /var/cache/apk/* /tmp/* /tmp/.[!.]*

BR,
Daniel

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant