| | |
| | |
| | |
| | |
| | FROM continuumio/miniconda3:latest AS compile-image |
| | |
| | ENV PYTHON_VERSION=3.8 |
| | |
| | RUN apt-get update && \ |
| | apt-get install -y curl git wget software-properties-common git-lfs && \ |
| | apt-get clean && \ |
| | rm -rf /var/lib/apt/lists* |
| |
|
| | |
| | RUN apt-get update && \ |
| | apt install -y ffmpeg |
| |
|
| | RUN git lfs install |
| |
|
| | |
| | RUN conda create --name peft python=${PYTHON_VERSION} ipython jupyter pip |
| | RUN python3 -m pip install --no-cache-dir --upgrade pip |
| |
|
| | |
| | |
| | |
| | ENV PATH /opt/conda/envs/peft/bin:$PATH |
| | |
| | RUN chsh -s /bin/bash |
| | SHELL ["/bin/bash", "-c"] |
| | |
| | RUN source activate peft && \ |
| | python3 -m pip install --no-cache-dir \ |
| | git+https://github.com/huggingface/transformers \ |
| | git+https://github.com/huggingface/accelerate \ |
| | git+https://github.com/huggingface/peft |
| |
|
| | RUN python3 -m pip install --no-cache-dir bitsandbytes |
| |
|
| | |
| | FROM nvidia/cuda:11.2.2-cudnn8-devel-ubuntu20.04 AS build-image |
| | COPY --from=compile-image /opt/conda /opt/conda |
| | ENV PATH /opt/conda/bin:$PATH |
| |
|
| | |
| | RUN apt-get update && \ |
| | apt-get install -y curl git wget && \ |
| | apt-get clean && \ |
| | rm -rf /var/lib/apt/lists* |
| |
|
| | RUN echo "source activate peft" >> ~/.profile |
| |
|
| | |
| | CMD ["/bin/bash"] |