Dockerfile 2.79 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
FROM lukemathwalker/cargo-chef:latest-rust-1.67 AS chef
WORKDIR /usr/src

FROM chef as planner
COPY Cargo.toml Cargo.toml
COPY rust-toolchain.toml rust-toolchain.toml
COPY proto proto
COPY router router
COPY launcher launcher
RUN cargo chef prepare --recipe-path recipe.json

FROM chef AS builder
13
14
15
16
17
18

RUN PROTOC_ZIP=protoc-21.12-linux-x86_64.zip && \
    curl -OL https://github.com/protocolbuffers/protobuf/releases/download/v21.12/$PROTOC_ZIP && \
    unzip -o $PROTOC_ZIP -d /usr/local bin/protoc && \
    unzip -o $PROTOC_ZIP -d /usr/local 'include/*' && \
    rm -f $PROTOC_ZIP
Olivier Dehaene's avatar
Olivier Dehaene committed
19

20
21
COPY --from=planner /usr/src/recipe.json recipe.json
RUN cargo chef cook --release --recipe-path recipe.json
Olivier Dehaene's avatar
Olivier Dehaene committed
22

23
COPY Cargo.toml Cargo.toml
24
COPY rust-toolchain.toml rust-toolchain.toml
Olivier Dehaene's avatar
Olivier Dehaene committed
25
26
COPY proto proto
COPY router router
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
27
COPY launcher launcher
28
RUN cargo build --release
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
29

30
FROM nvidia/cuda:11.8.0-devel-ubuntu22.04 as base
Olivier Dehaene's avatar
Olivier Dehaene committed
31
32
33
34

ENV LANG=C.UTF-8 \
    LC_ALL=C.UTF-8 \
    DEBIAN_FRONTEND=noninteractive \
35
    HUGGINGFACE_HUB_CACHE=/data \
36
    HF_HUB_ENABLE_HF_TRANSFER=1 \
37
    MODEL_ID=bigscience/bloom-560m \
38
    QUANTIZE=false \
39
    NUM_SHARD=1 \
40
    PORT=80 \
Olivier Dehaene's avatar
Olivier Dehaene committed
41
42
43
44
45
    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

46
RUN apt-get update && apt-get install -y git curl libssl-dev && rm -rf /var/lib/apt/lists/*
Olivier Dehaene's avatar
Olivier Dehaene committed
47
48

RUN cd ~ && \
Nicolas Patry's avatar
Nicolas Patry committed
49
    curl -L -O https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh && \
Olivier Dehaene's avatar
Olivier Dehaene committed
50
51
52
53
    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
54
55
WORKDIR /usr/src

56
57
58
# Install torch
RUN pip install torch --extra-index-url https://download.pytorch.org/whl/cu118 --no-cache-dir

Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
59
60
COPY server/Makefile server/Makefile

61
62
# Install specific version of flash attention
RUN cd server && make install-flash-attention
Olivier Dehaene's avatar
Olivier Dehaene committed
63
64

# Install specific version of transformers
65
RUN cd server && BUILD_EXTENSIONS="True" make install-transformers
Olivier Dehaene's avatar
Olivier Dehaene committed
66
67

# Install server
Nicolas Patry's avatar
Nicolas Patry committed
68
COPY proto proto
Olivier Dehaene's avatar
Olivier Dehaene committed
69
70
COPY server server
RUN cd server && \
Nicolas Patry's avatar
Nicolas Patry committed
71
    make gen-server && \
72
    /opt/miniconda/envs/text-generation/bin/pip install ".[bnb]" --no-cache-dir
Olivier Dehaene's avatar
Olivier Dehaene committed
73
74

# Install router
75
COPY --from=builder /usr/src/target/release/text-generation-router /usr/local/bin/text-generation-router
Nicolas Patry's avatar
Nicolas Patry committed
76
# Install launcher
77
COPY --from=builder /usr/src/target/release/text-generation-launcher /usr/local/bin/text-generation-launcher
Olivier Dehaene's avatar
Olivier Dehaene committed
78

79
80
81
82
83
84
85
86
87
88
89
# AWS Sagemaker compatbile image
FROM base as sagemaker

COPY sagemaker-entrypoint.sh entrypoint.sh
RUN chmod +x entrypoint.sh

ENTRYPOINT ["./entrypoint.sh"]

# Original image
FROM base

90
91
ENTRYPOINT ["text-generation-launcher"]
CMD ["--json-output"]