* Fix docker images * add-apt-repository requires gnupg, gpg-agent, software-properties-common * update * avoid importing ipex again
		
			
				
	
	
		
			54 lines
		
	
	
	
		
			3.1 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
	
		
			3.1 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM intel/oneapi-basekit:2024.0.1-devel-ubuntu22.04
 | 
						|
ARG http_proxy
 | 
						|
ARG https_proxy
 | 
						|
ENV TZ=Asia/Shanghai
 | 
						|
ARG PIP_NO_CACHE_DIR=false
 | 
						|
 | 
						|
# retrive oneapi repo public key
 | 
						|
RUN wget -O- https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB | gpg --dearmor | tee /usr/share/keyrings/intel-oneapi-archive-keyring.gpg > /dev/null && \
 | 
						|
    echo "deb [signed-by=/usr/share/keyrings/intel-oneapi-archive-keyring.gpg] https://apt.repos.intel.com/oneapi all main " | tee /etc/apt/sources.list.d/oneAPI.list && \
 | 
						|
    chmod 644 /usr/share/keyrings/intel-oneapi-archive-keyring.gpg && \
 | 
						|
    rm /etc/apt/sources.list.d/intel-graphics.list && \
 | 
						|
    wget -O- https://repositories.intel.com/graphics/intel-graphics.key | gpg --dearmor | tee /usr/share/keyrings/intel-graphics.gpg > /dev/null && \
 | 
						|
    echo "deb [arch=amd64,i386 signed-by=/usr/share/keyrings/intel-graphics.gpg] https://repositories.intel.com/graphics/ubuntu jammy arc" | tee /etc/apt/sources.list.d/intel.gpu.jammy.list && \
 | 
						|
    chmod 644 /usr/share/keyrings/intel-graphics.gpg && \
 | 
						|
    # update dependencies
 | 
						|
    apt-get update && \
 | 
						|
    # install basic dependencies
 | 
						|
    apt-get install -y --no-install-recommends curl wget git libunwind8-dev vim less && \
 | 
						|
    # install Intel GPU driver
 | 
						|
    apt-get install -y --no-install-recommends intel-opencl-icd intel-level-zero-gpu level-zero level-zero-dev --allow-downgrades && \
 | 
						|
    # install python 3.11
 | 
						|
    ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone && \
 | 
						|
    env DEBIAN_FRONTEND=noninteractive apt-get update && \
 | 
						|
    # add-apt-repository requires gnupg, gpg-agent, software-properties-common
 | 
						|
    apt-get install -y --no-install-recommends gnupg gpg-agent software-properties-common && \
 | 
						|
    # Add Python 3.11 PPA repository
 | 
						|
    add-apt-repository ppa:deadsnakes/ppa -y && \
 | 
						|
    apt-get install -y --no-install-recommends python3.11 python3-pip python3.11-dev python3-wheel python3.11-distutils && \
 | 
						|
    # avoid axolotl lib conflict
 | 
						|
    apt-get remove -y python3-blinker && apt autoremove -y && \
 | 
						|
    # link to python 3.11
 | 
						|
    rm /usr/bin/python3 && \
 | 
						|
    ln -s /usr/bin/python3.11 /usr/bin/python3 && \
 | 
						|
    ln -s /usr/bin/python3 /usr/bin/python && \
 | 
						|
    # remove apt cache
 | 
						|
    rm -rf /var/lib/apt/lists/* && \
 | 
						|
    # upgrade pip
 | 
						|
    wget https://bootstrap.pypa.io/get-pip.py -O get-pip.py && \
 | 
						|
    python3 get-pip.py && \
 | 
						|
    # install XPU ipex-llm
 | 
						|
    pip install --pre --upgrade ipex-llm[xpu] --extra-index-url https://pytorch-extension.intel.com/release-whl/stable/xpu/us/ && \
 | 
						|
    # prepare finetune code and scripts
 | 
						|
    git clone https://github.com/intel-analytics/IPEX-LLM.git && \
 | 
						|
    mv IPEX-LLM/python/llm/example/GPU/LLM-Finetuning /LLM-Finetuning && \
 | 
						|
    rm -rf IPEX-LLM && \
 | 
						|
    # install transformers & peft dependencies
 | 
						|
    pip install transformers==4.36.0 && \
 | 
						|
    pip install peft==0.10.0 datasets && \
 | 
						|
    pip install bitsandbytes scipy fire && \
 | 
						|
    # Prepare accelerate config
 | 
						|
    mkdir -p /root/.cache/huggingface/accelerate && \
 | 
						|
    mv /LLM-Finetuning/axolotl/default_config.yaml /root/.cache/huggingface/accelerate/
 | 
						|
 | 
						|
COPY ./start-qlora-finetuning-on-xpu.sh /start-qlora-finetuning-on-xpu.sh
 |