Răsfoiți Sursa

use rsproxy (#6)

LoGin 1 an în urmă
părinte
comite
b40988782b
2 a modificat fișierele cu 18 adăugiri și 0 ștergeri
  1. 8 0
      docker/Dockerfile
  2. 10 0
      docker/cargo.conf

+ 8 - 0
docker/Dockerfile

@@ -9,7 +9,12 @@ FROM ubuntu:22.04 as build
 
 # For CI/CD purposes, we can pass a pre-run command to the build image
 ARG PRE_RUN_CMD=""
+ARG CRATES_IO_INDEX="sparse+https://rsproxy.cn/index/"
 
+ENV RUSTUP_DIST_SERVER="https://rsproxy.cn"
+ENV RUSTUP_UPDATE_ROOT="https://rsproxy.cn/rustup"
+
+# 用于在CICD系统中执行自定义命令
 RUN $PRE_RUN_CMD
 
 RUN apt-get update -y && \
@@ -29,6 +34,9 @@ RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- \
     --default-toolchain stable --profile minimal -y
 
 COPY . .
+
+RUN cp ./docker/cargo.config $HOME/.cargo/config
+
 RUN bash -c 'source $HOME/.cargo/env && cargo test --release --all'
 RUN bash -c 'source $HOME/.cargo/env && cargo build --release'
 

+ 10 - 0
docker/cargo.conf

@@ -0,0 +1,10 @@
+[source.crates-io]
+replace-with = 'rsproxy-sparse'
+[source.rsproxy]
+registry = "https://rsproxy.cn/crates.io-index"
+[source.rsproxy-sparse]
+registry = "sparse+https://rsproxy.cn/index/"
+[registries.rsproxy]
+index = "https://rsproxy.cn/crates.io-index"
+[net]
+git-fetch-with-cli = true