Skip to content

Commit

Permalink
Use patchelf 0.12 in docker
Browse files Browse the repository at this point in the history
Fix #38
  • Loading branch information
azubieta committed Sep 30, 2020
1 parent 7ca8205 commit 377cb8b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM ubuntu:bionic

RUN apt-get update && apt-get -y install python3 python3-setuptools python3-pip wget patchelf fakeroot gnupg2 libglib2.0-bin file \
RUN apt-get update && apt-get -y install python3 python3-setuptools python3-pip wget fakeroot gnupg2 libglib2.0-bin file \
desktop-file-utils libgdk-pixbuf2.0-dev librsvg2-dev zsync

ADD AppImageBuilder /opt/appimage-builder/AppImageBuilder
Expand All @@ -22,5 +22,11 @@ RUN wget https://github.com/AppImage/AppImageKit/releases/download/continuous/ap
ln -s /opt/appimage-tool.AppDir/AppRun /usr/bin/appimagetool && \
rm /tmp/appimagetool-x86_64.AppImage

RUN wget https://github.com/NixOS/patchelf/releases/download/0.12/patchelf-0.12.tar.bz2; \
tar -xvf patchelf-0.12.tar.bz2; \
cd patchelf-0.12.20200827.8d3a16e; \
./configure && make && make install; \
rm -rf patchelf-*

WORKDIR /
RUN apt-get -y autoclean

0 comments on commit 377cb8b

Please sign in to comment.