Commit 36c3ad6f authored by myhloli's avatar myhloli
Browse files

build(docker): update Dockerfiles and download scripts

- Update Dockerfiles in china, global, and huawei_npu directories
- Improve wget commands by specifying output file names
- Update READMEs to reflect new Dockerfile locations
parent 0f1dff1e
...@@ -279,7 +279,7 @@ If your device supports CUDA and meets the GPU requirements of the mainline envi ...@@ -279,7 +279,7 @@ If your device supports CUDA and meets the GPU requirements of the mainline envi
> docker run --rm --gpus=all nvidia/cuda:12.1.0-base-ubuntu22.04 nvidia-smi > docker run --rm --gpus=all nvidia/cuda:12.1.0-base-ubuntu22.04 nvidia-smi
> ``` > ```
```bash ```bash
wget https://github.com/opendatalab/MinerU/raw/master/Dockerfile wget https://github.com/opendatalab/MinerU/raw/master/docker/global/Dockerfile -O Dockerfile
docker build -t mineru:latest . docker build -t mineru:latest .
docker run --rm -it --gpus=all mineru:latest /bin/bash docker run --rm -it --gpus=all mineru:latest /bin/bash
magic-pdf --help magic-pdf --help
......
...@@ -284,7 +284,7 @@ pip install -U magic-pdf[full] --extra-index-url https://wheels.myhloli.com -i h ...@@ -284,7 +284,7 @@ pip install -U magic-pdf[full] --extra-index-url https://wheels.myhloli.com -i h
> docker run --rm --gpus=all nvidia/cuda:12.1.0-base-ubuntu22.04 nvidia-smi > docker run --rm --gpus=all nvidia/cuda:12.1.0-base-ubuntu22.04 nvidia-smi
> ``` > ```
```bash ```bash
wget https://github.com/opendatalab/MinerU/raw/master/Dockerfile wget https://github.com/opendatalab/MinerU/raw/master/docker/china/Dockerfile -O Dockerfile
docker build -t mineru:latest . docker build -t mineru:latest .
docker run --rm -it --gpus=all mineru:latest /bin/bash docker run --rm -it --gpus=all mineru:latest /bin/bash
magic-pdf --help magic-pdf --help
......
...@@ -30,7 +30,7 @@ RUN python3 -m venv /opt/mineru_venv ...@@ -30,7 +30,7 @@ RUN python3 -m venv /opt/mineru_venv
# Activate the virtual environment and install necessary Python packages # Activate the virtual environment and install necessary Python packages
RUN /bin/bash -c "source /opt/mineru_venv/bin/activate && \ RUN /bin/bash -c "source /opt/mineru_venv/bin/activate && \
pip3 install --upgrade pip && \ pip3 install --upgrade pip && \
wget https://gitee.com/myhloli/MinerU/raw/master/docker/china/requirements.txt && \ wget https://gitee.com/myhloli/MinerU/raw/master/docker/china/requirements.txt -O requirements.txt && \
pip3 install -r requirements.txt --extra-index-url https://wheels.myhloli.com -i https://mirrors.aliyun.com/pypi/simple && \ pip3 install -r requirements.txt --extra-index-url https://wheels.myhloli.com -i https://mirrors.aliyun.com/pypi/simple && \
pip3 install paddlepaddle-gpu==3.0.0b1 -i https://www.paddlepaddle.org.cn/packages/stable/cu118/" pip3 install paddlepaddle-gpu==3.0.0b1 -i https://www.paddlepaddle.org.cn/packages/stable/cu118/"
...@@ -42,7 +42,7 @@ RUN /bin/bash -c "wget https://gitee.com/myhloli/MinerU/raw/master/magic-pdf.tem ...@@ -42,7 +42,7 @@ RUN /bin/bash -c "wget https://gitee.com/myhloli/MinerU/raw/master/magic-pdf.tem
# Download models and update the configuration file # Download models and update the configuration file
RUN /bin/bash -c "pip3 install modelscope && \ RUN /bin/bash -c "pip3 install modelscope && \
wget https://gitee.com/myhloli/MinerU/raw/master/scripts/download_models.py && \ wget https://gitee.com/myhloli/MinerU/raw/master/scripts/download_models.py -O download_models.py && \
python3 download_models.py && \ python3 download_models.py && \
sed -i 's|cpu|cuda|g' /root/magic-pdf.json" sed -i 's|cpu|cuda|g' /root/magic-pdf.json"
......
...@@ -30,7 +30,7 @@ RUN python3 -m venv /opt/mineru_venv ...@@ -30,7 +30,7 @@ RUN python3 -m venv /opt/mineru_venv
# Activate the virtual environment and install necessary Python packages # Activate the virtual environment and install necessary Python packages
RUN /bin/bash -c "source /opt/mineru_venv/bin/activate && \ RUN /bin/bash -c "source /opt/mineru_venv/bin/activate && \
pip3 install --upgrade pip && \ pip3 install --upgrade pip && \
wget https://github.com/opendatalab/MinerU/raw/master/docker/global/requirements.txt && \ wget https://github.com/opendatalab/MinerU/raw/master/docker/global/requirements.txt -O requirements.txt && \
pip3 install -r requirements.txt --extra-index-url https://wheels.myhloli.com && \ pip3 install -r requirements.txt --extra-index-url https://wheels.myhloli.com && \
pip3 install paddlepaddle-gpu==3.0.0b1 -i https://www.paddlepaddle.org.cn/packages/stable/cu118/" pip3 install paddlepaddle-gpu==3.0.0b1 -i https://www.paddlepaddle.org.cn/packages/stable/cu118/"
......
...@@ -30,7 +30,7 @@ RUN python3 -m venv /opt/mineru_venv ...@@ -30,7 +30,7 @@ RUN python3 -m venv /opt/mineru_venv
# Activate the virtual environment and install necessary Python packages # Activate the virtual environment and install necessary Python packages
RUN /bin/bash -c "source /opt/mineru_venv/bin/activate && \ RUN /bin/bash -c "source /opt/mineru_venv/bin/activate && \
pip3 install --upgrade pip && \ pip3 install --upgrade pip && \
wget https://gitee.com/myhloli/MinerU/raw/dev/docker/huawei_npu/requirements.txt && \ wget https://gitee.com/myhloli/MinerU/raw/dev/docker/huawei_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" pip3 install -r requirements.txt --extra-index-url https://wheels.myhloli.com -i https://mirrors.aliyun.com/pypi/simple"
# Copy the configuration file template and install magic-pdf latest # Copy the configuration file template and install magic-pdf latest
...@@ -41,7 +41,7 @@ RUN /bin/bash -c "wget https://gitee.com/myhloli/MinerU/raw/master/magic-pdf.tem ...@@ -41,7 +41,7 @@ RUN /bin/bash -c "wget https://gitee.com/myhloli/MinerU/raw/master/magic-pdf.tem
# Download models and update the configuration file # Download models and update the configuration file
RUN /bin/bash -c "pip3 install modelscope && \ RUN /bin/bash -c "pip3 install modelscope && \
wget https://gitee.com/myhloli/MinerU/raw/master/scripts/download_models.py && \ wget https://gitee.com/myhloli/MinerU/raw/master/scripts/download_models.py -O download_models.py && \
python3 download_models.py && \ python3 download_models.py && \
sed -i 's|cpu|npu|g' /root/magic-pdf.json" sed -i 's|cpu|npu|g' /root/magic-pdf.json"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment