浏览代码

update dockerfile

longjin 1 年之前
父节点
当前提交
10b896c4d5
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      docker/Dockerfile

+ 3 - 3
docker/Dockerfile

@@ -9,16 +9,16 @@ 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="echo pre-run-cmd"
-ARG CRATES_IO_INDEX="sparse+https://rsproxy.cn/index/"
 ARG APT_REPO="cn.archive.ubuntu.com"
 
+
 ENV RUSTUP_DIST_SERVER="https://rsproxy.cn"
 ENV RUSTUP_UPDATE_ROOT="https://rsproxy.cn/rustup"
 
 # 用于在CICD系统中执行自定义命令
 RUN $PRE_RUN_CMD
 
-RUN sed -i 's/archive.ubuntu.com/${APT_REPO}/g' /etc/apt/sources.list
+RUN bash -c "sed -i 's/archive.ubuntu.com/${APT_REPO}/g' /etc/apt/sources.list"
 
 RUN apt-get update -y && \
     DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
@@ -38,7 +38,7 @@ RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- \
 
 COPY . .
 
-RUN cp ./docker/cargo.config $HOME/.cargo/config
+RUN cp ./docker/cargo.conf $HOME/.cargo/config
 
 RUN bash -c 'source $HOME/.cargo/env && cargo test --release --all'
 RUN bash -c 'source $HOME/.cargo/env && cargo build --release'