Tests: Dockerfile: Replace manual cleanup with apt-get dist-clean.

This commit is contained in:
Constantine Molchanov 2026-06-10 14:16:31 +04:00
parent 842bc16b9e
commit f9bc099121
No known key found for this signature in database
GPG Key ID: 933693C95E59269C

View File

@ -4,7 +4,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
cmake make \
libc-dev \
iproute2 \
&& rm -rf /var/lib/apt/lists/*
&& apt-get dist-clean
# Build miniupnpd with stub redirector: no iptables/nftables needed, always
# returns success for port mapping requests — safe for isolated test containers.