From 28ad8214e54197231d354a77b805aba02bb3e110 Mon Sep 17 00:00:00 2001 From: Martin Hoffmann Date: Fri, 16 Aug 2019 11:19:50 +0200 Subject: [PATCH] Add libssl-dev to Docker build. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d9563ef..5a72dfb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM rust:1.36.0-stretch as build RUN apt-get -yq update && \ - apt-get -yq install musl-tools + apt-get -yq install musl-tools libssl-dev RUN rustup target add x86_64-unknown-linux-musl