crosvm/e2e_tests/guest_under_test/rootfs/Dockerfile
Hikaru Nishida a3cad48f93 e2e_tests: Add a helper to read guest clocks
BUG=b:295256641
TEST=make rootfs
TEST=./tools/dev_container ./tools/presubmit crosvm_tests_mingw64
TEST=./tools/dev_container ./tools/presubmit crosvm_tests_x86_64

Change-Id: I07c4ec76b4a3d3ca31b26551393befbd7907678b
Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/5188024
Reviewed-by: Dennis Kempin <denniskempin@google.com>
Commit-Queue: Hikaru Nishida <hikalium@chromium.org>
2024-01-22 11:24:14 +00:00

17 lines
584 B
Docker

# Copyright 2020 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
ARG ARCH
FROM ${ARCH}/debian:bookworm
RUN --mount=type=cache,target=/var/cache/apt,sharing=private \
--mount=type=cache,target=/var/lib/apt,sharing=private \
apt-get update \
&& apt-get install --yes pciutils ncat alsa-utils sox sg3-utils
# Note: This docker file is run from the $(target)/rootfs directory specified in
# the Makefile.
# Copy helper binaries
COPY ./delegate /bin/delegate
COPY ./readclock /bin/readclock