From be777ee219979c970727cbb921bb71329e535678 Mon Sep 17 00:00:00 2001 From: ii343hbka Date: Thu, 2 Apr 2026 13:06:24 +0200 Subject: [PATCH] Dockerfile.full build fix gcc:latest based on trixie that does not have libpcre3-dev available to provide pcre.h --- Dockerfile.full | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile.full b/Dockerfile.full index fe0613a..9a62f5a 100644 --- a/Dockerfile.full +++ b/Dockerfile.full @@ -21,7 +21,8 @@ # plugins are located in /usr/local/3proxy/libexec (/libexec for chroot config). -FROM gcc AS buildenv +FROM gcc:bookworm AS buildenv +RUN apt update && apt install -y --no-install-recommends libpcre3-dev && rm -rf /var/lib/apt/lists/* COPY . 3proxy RUN cd 3proxy &&\ echo "">> Makefile.Linux &&\