From 21ff9e4a656e84220b6962849a439255c625bc0f Mon Sep 17 00:00:00 2001 From: Matt Stam Date: Thu, 7 Mar 2024 11:00:43 -0800 Subject: [PATCH] chore: remove manual openSSL installation in Dockerfile (#352) --- cli/docker/Dockerfile | 3 --- 1 file changed, 3 deletions(-) diff --git a/cli/docker/Dockerfile b/cli/docker/Dockerfile index abe9084a93..c07493c83f 100644 --- a/cli/docker/Dockerfile +++ b/cli/docker/Dockerfile @@ -6,9 +6,6 @@ RUN curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused -fsSL 'https: ENV PATH="/root/.cargo/bin:${PATH}" RUN curl -L https://sp1.succinct.xyz | bash && ~/.sp1/bin/sp1up -# Hack to fix openssl issue, will not be needed when toolchain is compiled with newer openssl -RUN curl -L http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.21_amd64.deb -o libssl.deb && yes | dpkg -i libssl.deb - WORKDIR /root/program ENV CARGO_TERM_COLOR=always