From 75ab8e7c4033da274d1bea282680e2c9dbbb477e Mon Sep 17 00:00:00 2001 From: liushuyu Date: Tue, 7 Jun 2022 19:27:18 -0600 Subject: [PATCH] dockerfile: attempt to use system OpenSSL --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 506c8a4..0307c0c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM debian:bullseye AS build ENV DEBIAN_FRONTEND=noninteractive ARG USE_CCACHE RUN apt-get update && apt-get -y full-upgrade && \ - apt-get install -y build-essential wget git ccache cmake ninja-build + apt-get install -y build-essential wget git ccache cmake ninja-build libssl-dev COPY . /root/build-files