diff --git a/Dockerfile b/Dockerfile index 45d89bcd1b..764cf477cf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,13 +9,11 @@ RUN /usr/sbin/build-deb.sh FROM debian:bookworm COPY --from=builder /tmp/deb/ /tmp/debs/ RUN export DEBIAN_FRONTEND=noninteractive && \ -apt-get update && \ dpkg -i /tmp/debs/*.deb || true && \ -apt-get update && apt-get -f -y install && \ -apt-get -y install gnupg2 ca-certificates iproute2 mariadb-client gettext-base gdb && \ apt-key adv --fetch-keys https://apt.opensips.org/pubkey.gpg && \ echo "deb https://apt.opensips.org bookworm cli-nightly" >/etc/apt/sources.list.d/opensips-cli.list && \ -apt-get -y update -qq && apt-get -y install opensips-cli && \ +apt-get update && apt-get -f -y install && \ +apt-get -y install gnupg2 ca-certificates iproute2 mariadb-client gettext-base gdb opensips-cli sngrep && \ apt-get autoremove --purge -y && \ apt-get clean && \ rm -rf /var/lib/apt/lists/*