mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-25 13:23:08 +00:00
a3cad48f93
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>
17 lines
584 B
Docker
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
|