1# Copyright 2020 The ChromiumOS Authors 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4ARG ARCH 5FROM ${ARCH}/debian:bookworm 6 7RUN --mount=type=cache,target=/var/cache/apt,sharing=private \ 8 --mount=type=cache,target=/var/lib/apt,sharing=private \ 9 apt-get update \ 10 && apt-get install --yes pciutils ncat alsa-utils sox 11 12# Note: This docker file is run from the $(target)/rootfs directory specified in 13# the Makefile. 14COPY ./delegate /bin/delegate 15