From 98c1a0ff64eaa9bd0cb8e8ea1a3ee96ab0b54dde Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Mon, 11 Nov 2019 13:00:38 +0100 Subject: [PATCH] tests: Install openssl 1.1 in the docker image. We copy the sccache-dist binary from the host to the container. If the host is using openssl 1.1 (like Fedora by default) then the sccache-dist binary can't find the right shared libs and fails. This allows me to run dist-tests in Fedora, with some hackarounds like: * https://github.com/mozilla/kitsune/issues/3991#issuecomment-552154956 --- tests/harness/Dockerfile.sccache-dist | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/harness/Dockerfile.sccache-dist b/tests/harness/Dockerfile.sccache-dist index 2eaf87eb..64be2f7a 100644 --- a/tests/harness/Dockerfile.sccache-dist +++ b/tests/harness/Dockerfile.sccache-dist @@ -10,6 +10,6 @@ RUN cd /bubblewrap-0.3.1 && \ FROM aidanhs/ubuntu-docker:18.04-17.03.2-ce RUN apt-get update && \ - apt-get install libcap2 libssl1.0.0 && \ + apt-get install libcap2 libssl1.1 && \ apt-get clean COPY --from=bwrap-build /bubblewrap-0.3.1/bwrap /bwrap