From 901a395229ab704ebd1e53d6249dac917789a301 Mon Sep 17 00:00:00 2001 From: David Cozens Date: Mon, 20 Apr 2026 12:24:26 +0100 Subject: [PATCH] feat: add libssl-dev for OpenSSL-linked tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Enables downstream projects to build against OpenSSL (headers + linker symlinks). The runtime library libssl3 is already present as a transitive dependency of openssl/ca-certificates — this change adds only the development package. Needed for SolidSyslog E3 (TLS transport) — SolidSyslogPosixTlsStream links libssl/libcrypto. Co-Authored-By: Claude Opus 4.7 (1M context) --- dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfile b/dockerfile index 474a034..8d3610b 100644 --- a/dockerfile +++ b/dockerfile @@ -18,7 +18,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ && rm -rf /var/lib/apt/lists/* RUN apt-get update && apt-get install -y --no-install-recommends \ - autoconf automake clang-format-19 clang-tidy-19 cmake cppcheck g++ gcc gdb gh git lcov libtool make openssh-client sudo \ + autoconf automake clang-format-19 clang-tidy-19 cmake cppcheck g++ gcc gdb gh git lcov libssl-dev libtool make openssh-client sudo \ && rm -rf /var/lib/apt/lists/* # Set clang-format-19 and clang-tidy-19 as defaults