Dockerfile 2.03 KB
Newer Older
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
1
FROM rust:1.64 as router-builder
Olivier Dehaene's avatar
Olivier Dehaene committed
2
3
4
5
6
7
8
9
10
11

WORKDIR /usr/src

COPY proto proto
COPY router router

WORKDIR /usr/src/router

RUN cargo install --path .

Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
12
13
14
15
16
17
18
19
20
21
22
FROM rust:1.64 as launcher-builder

WORKDIR /usr/src

COPY launcher launcher

WORKDIR /usr/src/launcher

RUN cargo install --path .

FROM nvidia/cuda:11.8.0-devel-ubuntu22.04
Olivier Dehaene's avatar
Olivier Dehaene committed
23
24
25
26
27
28

ENV LANG=C.UTF-8 \
    LC_ALL=C.UTF-8 \
    DEBIAN_FRONTEND=noninteractive \
    MODEL_BASE_PATH=/var/azureml-model \
    MODEL_NAME=bigscience/bloom \
29
    QUANTIZE=false \
Olivier Dehaene's avatar
Olivier Dehaene committed
30
    NUM_GPUS=8 \
OlivierDehaene's avatar
OlivierDehaene committed
31
    SAFETENSORS_FAST_GPU=1 \
Olivier Dehaene's avatar
Olivier Dehaene committed
32
    CUDA_VISIBLE_DEVICES=0,1,2,3,4,5,6,7 \
Olivier Dehaene's avatar
Olivier Dehaene committed
33
    NCCL_ASYNC_ERROR_HANDLING=1 \
Olivier Dehaene's avatar
Olivier Dehaene committed
34
35
36
37
38
39
40
    CUDA_HOME=/usr/local/cuda \
    LD_LIBRARY_PATH="/opt/miniconda/envs/text-generation/lib:/usr/local/cuda/lib64:/usr/local/cuda/extras/CUPTI/lib64:$LD_LIBRARY_PATH" \
    CONDA_DEFAULT_ENV=text-generation \
    PATH=$PATH:/opt/miniconda/envs/text-generation/bin:/opt/miniconda/bin:/usr/local/cuda/bin

SHELL ["/bin/bash", "-c"]

Nicolas Patry's avatar
Nicolas Patry committed
41
RUN apt-get update && apt-get install -y unzip curl libssl-dev && rm -rf /var/lib/apt/lists/*
Olivier Dehaene's avatar
Olivier Dehaene committed
42
43

RUN cd ~ && \
Nicolas Patry's avatar
Nicolas Patry committed
44
    curl -L -O https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh && \
Olivier Dehaene's avatar
Olivier Dehaene committed
45
46
47
48
    chmod +x Miniconda3-latest-Linux-x86_64.sh && \
    bash ./Miniconda3-latest-Linux-x86_64.sh -bf -p /opt/miniconda && \
    conda create -n text-generation python=3.9 -y

Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
49
50
51
52
WORKDIR /usr/src

COPY server/Makefile server/Makefile

Olivier Dehaene's avatar
Olivier Dehaene committed
53
# Install specific version of torch
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
54
RUN cd server && make install-torch
Olivier Dehaene's avatar
Olivier Dehaene committed
55
56

# Install specific version of transformers
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
57
RUN cd server && make install-transformers
Olivier Dehaene's avatar
Olivier Dehaene committed
58
59

# Install server
Nicolas Patry's avatar
Nicolas Patry committed
60
COPY proto proto
Olivier Dehaene's avatar
Olivier Dehaene committed
61
62
COPY server server
RUN cd server && \
Nicolas Patry's avatar
Nicolas Patry committed
63
    make gen-server && \
64
    /opt/miniconda/envs/text-generation/bin/pip install ".[bnb]" --no-cache-dir
Olivier Dehaene's avatar
Olivier Dehaene committed
65
66

# Install router
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
67
COPY --from=router-builder /usr/local/cargo/bin/text-generation-router /usr/local/bin/text-generation-router
Nicolas Patry's avatar
Nicolas Patry committed
68
# Install launcher
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
69
COPY --from=launcher-builder /usr/local/cargo/bin/text-generation-launcher /usr/local/bin/text-generation-launcher
Olivier Dehaene's avatar
Olivier Dehaene committed
70

71
CMD HUGGINGFACE_HUB_CACHE=$MODEL_BASE_PATH text-generation-launcher --num-shard $NUM_GPUS --json-output