Dockerfile.full build fix

gcc:latest based on trixie that does not have libpcre3-dev available to provide pcre.h
This commit is contained in:
ii343hbka 2026-04-02 13:06:24 +02:00 committed by GitHub
parent 1f92847a63
commit be777ee219
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -21,7 +21,8 @@
# plugins are located in /usr/local/3proxy/libexec (/libexec for chroot config). # 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 COPY . 3proxy
RUN cd 3proxy &&\ RUN cd 3proxy &&\
echo "">> Makefile.Linux &&\ echo "">> Makefile.Linux &&\