From ad2b908777f72a999b4b0a15e4354974b5d64f0b Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Mon, 31 Jan 2022 16:22:32 -0500 Subject: [PATCH] Bump s2n commit in Dockerfile This bumps the `s2n` commit to GaloisInc/s2n@7f1017ee9b09ab6910f1d2bf56135663ca0b12c5, which points to the `llvm_points_to_bitfield` changes that were merged into the upstream `s2n-tls` repo in aws/s2n-tls#3155. --- s2nTests/docker/s2n.dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/s2nTests/docker/s2n.dockerfile b/s2nTests/docker/s2n.dockerfile index 82b7af20c8..805505540a 100644 --- a/s2nTests/docker/s2n.dockerfile +++ b/s2nTests/docker/s2n.dockerfile @@ -11,6 +11,7 @@ RUN apt-get update -y -q && \ llvm-3.9 \ make \ sudo \ + wget \ && \ rm -rf /var/lib/apt/lists/* @@ -19,10 +20,10 @@ RUN mkdir -p /saw-script && \ git clone https://github.com/GaloisInc/s2n.git && \ mkdir -p s2n/test-deps/saw/bin && \ cd s2n && \ - git checkout 6586f1ad3b35efcd2287ab98a4be124449dcb780 + git checkout 7f1017ee9b09ab6910f1d2bf56135663ca0b12c5 COPY scripts/s2n-entrypoint.sh /entrypoint.sh ENTRYPOINT [ "/entrypoint.sh" ] -CMD [ "/bin/bash" ] \ No newline at end of file +CMD [ "/bin/bash" ]