|
@@ -0,0 +1,62 @@
|
|
|
+FROM ubuntu:22.04
|
|
|
+SHELL ["/bin/bash", "-c"]
|
|
|
+
|
|
|
+# 安装必要依赖与开发工具
|
|
|
+RUN sed -i 's/archive.ubuntu.com/mirrors.ustc.edu.cn/g' /etc/apt/sources.list && \
|
|
|
+ apt-get update && apt-get install -y \
|
|
|
+ gcc-riscv64-unknown-elf gdb-multiarch dosfstools cmake \
|
|
|
+ git wget python3 vim file curl \
|
|
|
+ autoconf automake autotools-dev libmpc-dev libmpfr-dev libgmp-dev \
|
|
|
+ gawk build-essential bison flex texinfo gperf libtool patchutils bc \
|
|
|
+ zlib1g-dev libexpat-dev \
|
|
|
+ ninja-build pkg-config libglib2.0-dev libpixman-1-dev libsdl2-dev \
|
|
|
+ && rm -rf /var/lib/apt/lists/*
|
|
|
+
|
|
|
+# 安装 QEMU
|
|
|
+ARG QEMU_VERSION=7.0.0
|
|
|
+RUN cd /tmp && \
|
|
|
+ wget https://download.qemu.org/qemu-${QEMU_VERSION}.tar.xz && \
|
|
|
+ tar xf qemu-${QEMU_VERSION}.tar.xz && \
|
|
|
+ cd qemu-${QEMU_VERSION} && \
|
|
|
+ ./configure --target-list=riscv64-softmmu,riscv64-linux-user && \
|
|
|
+ make -j && \
|
|
|
+ make install && \
|
|
|
+ cd .. && \
|
|
|
+ rm -rf qemu-${QEMU_VERSION} qemu-${QEMU_VERSION}.tar.xz
|
|
|
+
|
|
|
+# 安装 code-server 和扩展
|
|
|
+ARG CODE_VERSION=4.10.1
|
|
|
+RUN cd /usr/local/ && \
|
|
|
+ wget https://github.com/coder/code-server/releases/download/v${CODE_VERSION}/code-server-${CODE_VERSION}-linux-amd64.tar.gz && \
|
|
|
+ tar xf code-server-${CODE_VERSION}-linux-amd64.tar.gz && \
|
|
|
+ ln -s /usr/local/code-server-${CODE_VERSION}-linux-amd64/bin/code-server /usr/bin/code && \
|
|
|
+ rm code-server-${CODE_VERSION}-linux-amd64.tar.gz && \
|
|
|
+ wget https://openvsxorg.blob.core.windows.net/resources/rust-lang/rust-analyzer/linux-x64/0.3.1435/rust-lang.rust-analyzer-0.3.1435@linux-x64.vsix && \
|
|
|
+ code --install-extension rust-lang.rust-analyzer-0.3.1435@linux-x64.vsix && \
|
|
|
+ rm rust-lang.rust-analyzer-0.3.1435@linux-x64.vsix && \
|
|
|
+ wget https://open-vsx.org/api/MS-CEINTL/vscode-language-pack-zh-hans/1.75.0/file/MS-CEINTL.vscode-language-pack-zh-hans-1.75.0.vsix && \
|
|
|
+ code --install-extension MS-CEINTL.vscode-language-pack-zh-hans-1.75.0.vsix && \
|
|
|
+ rm MS-CEINTL.vscode-language-pack-zh-hans-1.75.0.vsix
|
|
|
+
|
|
|
+WORKDIR /root
|
|
|
+# 安装 rust
|
|
|
+ARG RUST_VERSION=nightly
|
|
|
+ENV RUSTUP_DIST_SERVER=https://mirrors.ustc.edu.cn/rust-static
|
|
|
+ENV RUSTUP_UPDATE_ROOT=https://mirrors.ustc.edu.cn/rust-static/rustup
|
|
|
+RUN mkdir .cargo && \
|
|
|
+ echo '[source.crates-io]' >> .cargo/config && \
|
|
|
+ echo 'registry = "https://github.com/rust-lang/crates.io-index"' >> .cargo/config && \
|
|
|
+ echo 'replace-with = "ustc"' >> .cargo/config && \
|
|
|
+ echo '[source.ustc]' >> .cargo/config && \
|
|
|
+ echo 'registry = "git://mirrors.ustc.edu.cn/crates.io-index"' >> .cargo/config && \
|
|
|
+ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs -o rustup-init && \
|
|
|
+ chmod +x rustup-init && \
|
|
|
+ ./rustup-init -y --default-toolchain ${RUST_VERSION} --target riscv64imac-unknown-none-elf && \
|
|
|
+ rm rustup-init && \
|
|
|
+ source $HOME/.cargo/env && \
|
|
|
+ cargo install cargo-binutils && \
|
|
|
+ rustup component add llvm-tools-preview && \
|
|
|
+ rustup component add rust-src
|
|
|
+
|
|
|
+EXPOSE 8080/tcp
|
|
|
+CMD ["code", "--auth", "none", "--bind-addr", "0.0.0.0:8080"]
|