From 6407abf717bcffb60e832fa3c2bcc3e5d1cc22ac Mon Sep 17 00:00:00 2001 From: "Roger A. Light" Date: Wed, 12 Aug 2020 22:08:05 +0100 Subject: [PATCH] Docker: Fix missing libressl library. --- docker/1.5/Dockerfile | 4 +++- docker/1.6/Dockerfile | 3 ++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/docker/1.5/Dockerfile b/docker/1.5/Dockerfile index 7a0a10a3..b698aa52 100644 --- a/docker/1.5/Dockerfile +++ b/docker/1.5/Dockerfile @@ -78,7 +78,9 @@ RUN set -x && \ install -m644 /build/mosq/mosquitto.conf /mosquitto/config/mosquitto.conf && \ chown -R mosquitto:mosquitto /mosquitto && \ apk --no-cache add \ - ca-certificates libuuid && \ + ca-certificates \ + libressl \ + libuuid && \ apk del build-deps && \ rm -rf /build diff --git a/docker/1.6/Dockerfile b/docker/1.6/Dockerfile index 4fb7a5e8..c7fd02d8 100644 --- a/docker/1.6/Dockerfile +++ b/docker/1.6/Dockerfile @@ -79,7 +79,8 @@ RUN set -x && \ install -m644 /build/mosq/mosquitto.conf /mosquitto/config/mosquitto.conf && \ chown -R mosquitto:mosquitto /mosquitto && \ apk --no-cache add \ - ca-certificates && \ + ca-certificates \ + libressl && \ apk del build-deps && \ rm -rf /build