Lines Matching +full:debian +full:- +full:container
2 # Use of this source code is governed by a BSD-style license that can be
5 # Development container base image for crosvm.
7 # The dev container is split into two images. The base image in this Dockerfile.base only installs
8 # required Debian packages. This allows us to pin the version of debian packages used and update
9 # other parts of the container without pulling in the latest testing packages.
11 FROM docker.io/debian:testing-slim
13 # Add foreign architectures for cross-compilation.
14 RUN dpkg --add-architecture arm64 \
15 && dpkg --add-architecture armhf
17 # Use ./tools/deps/install-*-debs scripts to install debian packages
18 COPY --chmod=555 tools/deps/install-x86_64-debs tools/deps/install-aarch64-debs tools/deps/install-…
20 && apt-get update \
21 && apt-get install --yes sudo curl \
22 && ./install-x86_64-debs \
23 && ./install-aarch64-debs \
24 && ./install-armhf-debs \
25 && ./install-mingw64-debs