From cb9184fdb820f79714812c187a63b5ff2480f274 Mon Sep 17 00:00:00 2001 From: "mmore500.login+git@gmail.com" Date: Wed, 9 Jun 2021 18:10:26 -0400 Subject: [PATCH] Get libxxhash0 from -updates --- Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Dockerfile b/Dockerfile index b78f8e2887..cc007859d7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,7 +21,16 @@ RUN \ # Install apt packages # xvfb nonsense adapted from https://github.com/samgiles/docker-xvfb # remove -backports, -updates, -proposed, -security repositories +# looks like we have to grab libxxhash0 from -updates now RUN \ + apt-get update -y \ + && \ + apt-get install --no-install-recommends libxxhash0 \ + && \ + apt-get clean \ + && \ + rm -rf /var/lib/apt/lists/* \ + && \ find /etc/apt -type f -name '*.list' -exec sed -i 's/\(^deb.*-backports.*\)/#\1/; s/\(^deb.*-updates.*\)/#\1/; s/\(^deb.*-proposed.*\)/#\1/; s/\(^deb.*-security.*\)/#\1/' {} + \ && \ apt-get update -y \