From e0954772e5c2ead8ae33fe83d444eaeec63236a3 Mon Sep 17 00:00:00 2001 From: ii343hbka Date: Thu, 2 Apr 2026 17:48:02 +0200 Subject: [PATCH] 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 &&\