xref: /aosp_15_r20/external/crosvm/e2e_tests/guest_under_test/rootfs/Dockerfile (revision bb4ee6a4ae7042d18b07a98463b9c8b875e44b39)
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 sg3-utils
11
12# Note: This docker file is run from the $(target)/rootfs directory specified in
13#       the Makefile.
14
15# Copy helper binaries
16COPY ./delegate /bin/delegate
17COPY ./readclock /bin/readclock
18