From 132a738ebacdd91ba1a7475477db554166aecb6b Mon Sep 17 00:00:00 2001 From: tobtoht Date: Fri, 21 May 2021 22:09:23 +0200 Subject: [PATCH] Dockerfile: fix reproducibility issue with libudev --- Dockerfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 52f8bac..9944908 100644 --- a/Dockerfile +++ b/Dockerfile @@ -88,8 +88,6 @@ RUN apt-get update && \ # build tools software-properties-common automake pkg-config python \ libtool-bin wget zip \ -# dependencies - libusb-1.0-0-dev \ # Qt libgl1-mesa-dev libglib2.0-dev mesa-common-dev \ # libusb @@ -112,6 +110,11 @@ RUN add-apt-repository ppa:git-core/ppa && \ apt-get install -y git && \ rm -rf /var/lib/apt/lists/* +RUN wget http://archive.ubuntu.com/ubuntu/pool/main/s/systemd/libudev-dev_229-4ubuntu21.31_amd64.deb && \ + echo "f1f72bd814d1e8ca2828ac004924fba0b54a3299e60f089c6d818262b11750f7 libudev-dev_229-4ubuntu21.31_amd64.deb" | sha256sum -c && \ + apt install ./libudev-dev_229-4ubuntu21.31_amd64.deb && \ + rm libudev-dev_229-4ubuntu21.31_amd64.deb + RUN mkdir appimagetool && \ cd appimagetool && \ wget https://github.com/AppImage/AppImageKit/releases/download/12/appimagetool-x86_64.AppImage && \