From e0954772e5c2ead8ae33fe83d444eaeec63236a3 Mon Sep 17 00:00:00 2001 From: ii343hbka Date: Thu, 2 Apr 2026 17:48:02 +0200 Subject: [PATCH 1/2] Fix Dockerfile to use -y flag for apt install --- Dockerfile.full | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.full b/Dockerfile.full index cbeb35a..5ceed38 100644 --- a/Dockerfile.full +++ b/Dockerfile.full @@ -27,7 +27,7 @@ FROM gcc AS buildenv COPY . 3proxy RUN cd 3proxy &&\ - apt update && apt install libssl-dev libpam-dev libpcre2-dev &&\ + apt update && apt -y install libssl-dev libpam-dev libpcre2-dev &&\ make -f Makefile.Linux &&\ strip bin/3proxy &&\ strip bin/StringsPlugin.ld.so &&\ From 10453faa9f2b756bae0004436baf13c2b5ed1a21 Mon Sep 17 00:00:00 2001 From: ii343hbka Date: Thu, 2 Apr 2026 17:55:23 +0200 Subject: [PATCH 2/2] fix PCREPlugin/Makefile.inc separator --- src/plugins/PCREPlugin/Makefile.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/PCREPlugin/Makefile.inc b/src/plugins/PCREPlugin/Makefile.inc index b00a74c..5d3cec2 100644 --- a/src/plugins/PCREPlugin/Makefile.inc +++ b/src/plugins/PCREPlugin/Makefile.inc @@ -1,7 +1,7 @@ all: $(BUILDDIR)PCREPlugin$(DLSUFFICS) pcre_plugin$(OBJSUFFICS): pcre_plugin.c - $(CC) $(DCFLAGS) $(CFLAGS) pcre_plugin.c + $(CC) $(DCFLAGS) $(CFLAGS) pcre_plugin.c $(BUILDDIR)PCREPlugin$(DLSUFFICS): pcre_plugin$(OBJSUFFICS) $(LN) $(LNOUT)../../$(BUILDDIR)PCREPlugin$(DLSUFFICS) $(LDFLAGS) $(DLFLAGS) pcre_plugin$(OBJSUFFICS) $(LIBSPREFIX)pcre2-8$(LIBSSUFFIX)