Dockerfile 1.98 KB
Newer Older
OlivierDehaene's avatar
OlivierDehaene committed
1
FROM rust:1.65 as router-builder
Olivier Dehaene's avatar
Olivier Dehaene committed
2
3
4

WORKDIR /usr/src

5
COPY rust-toolchain.toml rust-toolchain.toml
Olivier Dehaene's avatar
Olivier Dehaene committed
6
7
8
9
10
11
12
COPY proto proto
COPY router router

WORKDIR /usr/src/router

RUN cargo install --path .

OlivierDehaene's avatar
OlivierDehaene committed
13
FROM rust:1.65 as launcher-builder
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
14
15
16

WORKDIR /usr/src

17
COPY rust-toolchain.toml rust-toolchain.toml
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
18
19
20
21
22
23
24
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
25
26
27
28

ENV LANG=C.UTF-8 \
    LC_ALL=C.UTF-8 \
    DEBIAN_FRONTEND=noninteractive \
29
    HUGGINGFACE_HUB_CACHE=/data \
30
    MODEL_ID=bigscience/bloom-560m \
31
    QUANTIZE=false \
32
    NUM_SHARD=1 \
33
    PORT=80 \
Olivier Dehaene's avatar
Olivier Dehaene committed
34
35
36
37
38
    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

Nicolas Patry's avatar
Nicolas Patry committed
39
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
40
41

RUN cd ~ && \
Nicolas Patry's avatar
Nicolas Patry committed
42
    curl -L -O https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh && \
Olivier Dehaene's avatar
Olivier Dehaene committed
43
44
45
46
    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
47
48
49
50
WORKDIR /usr/src

COPY server/Makefile server/Makefile

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

# Install specific version of transformers
55
RUN cd server && BUILD_EXTENSIONS="True" make install-transformers
Olivier Dehaene's avatar
Olivier Dehaene committed
56
57

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

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

69
70
ENTRYPOINT ["text-generation-launcher"]
CMD ["--json-output"]