|
|
@@ -33,13 +33,13 @@ RUN python3 -m venv /opt/mineru_venv
|
|
|
# Activate the virtual environment and install necessary Python packages
|
|
|
RUN /bin/bash -c "source /opt/mineru_venv/bin/activate && \
|
|
|
pip3 install --upgrade pip -i https://mirrors.aliyun.com/pypi/simple && \
|
|
|
- wget https://gitee.com/myhloli/MinerU/raw/master/docker/ascend_npu/requirements.txt -O requirements.txt && \
|
|
|
+ wget https://gcore.jsdelivr.net/gh/opendatalab/MinerU@master/docker/ascend_npu/requirements.txt -O requirements.txt && \
|
|
|
pip3 install -r requirements.txt --extra-index-url https://wheels.myhloli.com -i https://mirrors.aliyun.com/pypi/simple && \
|
|
|
wget https://gitee.com/ascend/pytorch/releases/download/v6.0.rc2-pytorch2.3.1/torch_npu-2.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl && \
|
|
|
pip install torch_npu-2.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl"
|
|
|
|
|
|
# Copy the configuration file template and install magic-pdf latest
|
|
|
-RUN /bin/bash -c "wget https://gitee.com/myhloli/MinerU/raw/master/magic-pdf.template.json && \
|
|
|
+RUN /bin/bash -c "wget https://gcore.jsdelivr.net/gh/opendatalab/MinerU@master/magic-pdf.template.json && \
|
|
|
cp magic-pdf.template.json /root/magic-pdf.json && \
|
|
|
source /opt/mineru_venv/bin/activate && \
|
|
|
pip3 install -U magic-pdf -i https://mirrors.aliyun.com/pypi/simple"
|
|
|
@@ -47,7 +47,7 @@ RUN /bin/bash -c "wget https://gitee.com/myhloli/MinerU/raw/master/magic-pdf.tem
|
|
|
# Download models and update the configuration file
|
|
|
RUN /bin/bash -c "source /opt/mineru_venv/bin/activate && \
|
|
|
pip3 install modelscope -i https://mirrors.aliyun.com/pypi/simple && \
|
|
|
- wget https://gitee.com/myhloli/MinerU/raw/master/scripts/download_models.py -O download_models.py && \
|
|
|
+ wget https://gcore.jsdelivr.net/gh/opendatalab/MinerU@master/scripts/download_models.py -O download_models.py && \
|
|
|
python3 download_models.py && \
|
|
|
sed -i 's|cpu|npu|g' /root/magic-pdf.json"
|
|
|
|