mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2025-12-24 13:28:13 +08:00
31 lines
1.8 KiB
Docker
31 lines
1.8 KiB
Docker
FROM ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/paddleqa:cuda126-py310-cibase
|
|
RUN apt update && apt install -y jq psmisc
|
|
COPY ../../requirements.txt ./requirements.txt
|
|
RUN python -m pip install --no-cache-dir -r requirements.txt -i https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple
|
|
COPY ./unittest_requirement.txt ./unittest_requirement.txt
|
|
RUN python -m pip install --no-cache-dir -r unittest_requirement.txt -i https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple
|
|
COPY ./requirements_paddle_nv.txt ./requirements_paddle_nv.txt
|
|
RUN python -m pip install --no-cache-dir -r requirements_paddle_nv.txt -i https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple
|
|
|
|
RUN wget -q --no-proxy https://paddle-qa.bj.bcebos.com/FastDeploy/MLNX_OFED_LINUX-24.10-3.2.5.0-ubuntu20.04-x86_64.tgz \
|
|
&& tar xf MLNX_OFED_LINUX-24.10-3.2.5.0-ubuntu20.04-x86_64.tgz
|
|
|
|
RUN rm -f /etc/apt/sources.list \
|
|
&& echo "deb http://archive.ubuntu.com/ubuntu jammy main restricted universe multiverse\ndeb http://archive.ubuntu.com/ubuntu jammy-updates main restricted universe multiverse\ndeb http://archive.ubuntu.com/ubuntu jammy-security main restricted universe multiverse" | tee /etc/apt/sources.list > /dev/null
|
|
|
|
RUN cd MLNX_OFED_LINUX-24.10-3.2.5.0-ubuntu20.04-x86_64 \
|
|
&& apt clean \
|
|
&& apt update --fix-missing \
|
|
&& apt-get install -y librdmacm-dev libibverbs-dev \
|
|
&& apt install -y iproute2 \
|
|
&& ./mlnxofedinstall --user-space-only --skip-distro-check --without-fw-update --force --without-ucx-cuda
|
|
|
|
RUN apt install -y build-essential tcl \
|
|
&& wget http://download.redis.io/releases/redis-7.2.0.tar.gz \
|
|
&& tar xzf redis-7.2.0.tar.gz && cd redis-7.2.0 \
|
|
&& make && make PREFIX=/usr/local/redis install
|
|
|
|
RUN rm -rf MLNX_OFED_LINUX-24.10-3.2.5.0-ubuntu20.04-x86_64* redis*
|
|
|
|
ENV PATH="/usr/local/redis/bin:${PATH}"
|