├── README.md └── Dockerfile-arm64 /README.md: -------------------------------------------------------------------------------- 1 | # instructlab 2 | -------------------------------------------------------------------------------- /Dockerfile-arm64: -------------------------------------------------------------------------------- 1 | FROM ubuntu:24.04 2 | 3 | ENV GIT_PYTHON_GIT_EXECUTABLE=/usr/bin/git 4 | 5 | RUN apt-get update -y && apt-get install -y apt-utils vim curl sudo git 6 | RUN apt-get install -y gcc make pip python3 python3.12-venv 7 | #RUN source venv/bin/activate 8 | RUN pip cache remove llama_cpp_python 9 | 10 | RUN CMAKE_ARGS="-DLLAMA_METAL=off" pip install instructlab --extra-index-url=https://download.pytorch.org/whl/cpu --break-system-packages 11 | 12 | RUN _ILAB_COMPLETE=bash_source ilab > ~/.ilab-complete.bash 13 | RUN echo ". ~/.ilab-complete.bash" >> ~/.bashrc 14 | 15 | --------------------------------------------------------------------------------