mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-17 02:26:46 +00:00
37 lines
966 B
Docker
37 lines
966 B
Docker
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
FROM {% base_image %}
|
|
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt update \
|
|
&& apt install -y \
|
|
build-essential \
|
|
curl \
|
|
gdb \
|
|
grub-efi-amd64 \
|
|
grub2-common \
|
|
libpixman-1-dev `# running dependency for QEMU` \
|
|
mtools `# used by grub-mkrescue` \
|
|
xorriso \
|
|
{% qemu_ovmf_installation %} \
|
|
&& apt clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install Rust of both nightly and stable channel
|
|
ENV PATH="/root/.cargo/bin:${PATH}"
|
|
ARG ASTER_RUST_VERSION
|
|
RUN curl https://sh.rustup.rs -sSf | \
|
|
sh -s -- --default-toolchain ${ASTER_RUST_VERSION} -y \
|
|
&& rustup toolchain install stable \
|
|
&& rm -rf /root/.cargo/registry && rm -rf /root/.cargo/git \
|
|
&& cargo -V \
|
|
&& rustup component add rust-src rustc-dev llvm-tools-preview
|
|
|
|
# Install cargo-binutils
|
|
RUN cargo install cargo-binutils
|
|
|
|
VOLUME [ "/root/asterinas" ]
|
|
|
|
WORKDIR /root/asterinas
|