mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-25 13:23:08 +00:00
df7a2e51bf
Add a tool used in vsock tests to dev_container and guest rootfs BUG=b:254375643 TEST=`./tools/presubmit` with the new guest rootfs on the new dev_container Change-Id: I135e6d2d413bedffef0fd69edd4ab14080429e3a Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/3974349 Reviewed-by: Dennis Kempin <denniskempin@google.com> Reviewed-by: Takaya Saeki <takayas@chromium.org> Commit-Queue: Ryuichiro Chiba <chibar@chromium.org> Reviewed-by: Keiichi Watanabe <keiichiw@chromium.org>
11 lines
353 B
Docker
11 lines
353 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}/alpine:3.16
|
|
|
|
RUN apk add --no-cache pciutils nmap-ncat
|
|
|
|
# Note: This docker file is run from the $(target)/rootfs directory specified in
|
|
# the Makefile.
|
|
COPY ./delegate /bin/delegate
|