From d767b56479cf11694e97a12daf51bd065acd106a Mon Sep 17 00:00:00 2001 From: dmfxyz Date: Fri, 15 Apr 2022 10:20:00 -0700 Subject: [PATCH] remove openssl --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7669287eda2f..dd4f05fd856b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ from alpine as build-environment WORKDIR /opt -RUN apk add clang lld curl build-base linux-headers openssl-dev \ +RUN apk add clang lld curl build-base linux-headers \ && curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > rustup.sh \ && chmod +x ./rustup.sh \ && ./rustup.sh -y