I'm getting the following errors when installing on arm64 since 10th April.
11.70 The following packages have unmet dependencies:
11.74 rtpengine : Depends: rtpengine-daemon (>= 14.1.1.5-1~bpo12+1) but it is not going to be installed
11.74 Depends: rtpengine-perftest (>= 14.1.1.5-1~bpo12+1) but it is not going to be installed
11.74 Depends: rtpengine-recording-daemon (>= 14.1.1.5-1~bpo12+1) but it is not going to be installed
11.74 E: Unable to correct problems, you have held broken packages.
Here's the Dockerfile for complete reference:
FROM public.ecr.aws/docker/library/debian:bookworm-slim
USER root
ENV DEBIAN_FRONTEND=noninteractive
ARG REL=latest
ARG DIST=bookworm
WORKDIR /tmp
RUN apt-get -y update -qq && apt-get -y install ca-certificates wget \
&& wget https://dfx.at/rtpengine/latest/pool/main/r/rtpengine-dfx-repo-keyring/rtpengine-dfx-repo-keyring_1.0_all.deb \
&& dpkg -i rtpengine-dfx-repo-keyring_1.0_all.deb \
&& echo "deb [signed-by=/usr/share/keyrings/dfx.at-rtpengine-archive-keyring.gpg] https://dfx.at/rtpengine/$REL $DIST main" | tee /etc/apt/sources.list.d/dfx.at-rtpengine.list \
&& apt-get -y update -qq && apt-get -y install rtpengine netcat-traditional jq curl \
&& apt-get purge -y --auto-remove wget \
&& rm -rf /var/lib/apt/lists/*
COPY docker-entrypoint.sh /docker-entrypoint.sh
ENTRYPOINT ["/docker-entrypoint.sh"]
CMD ["rtpengine"]
I'm getting the following errors when installing on arm64 since 10th April.
Here's the Dockerfile for complete reference: