"torchvision/csrc/vscode:/vscode.git/clone" did not exist on "adfc15c49259dc1c638e5736e9b3227672ee3c66"
Dockerfile 2.26 KB
Newer Older
1
2
3
4
5
6
7
FROM rust:1.67 as router-builder

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
8
9
10

WORKDIR /usr/src

11
COPY rust-toolchain.toml rust-toolchain.toml
Olivier Dehaene's avatar
Olivier Dehaene committed
12
13
14
15
16
17
18
COPY proto proto
COPY router router

WORKDIR /usr/src/router

RUN cargo install --path .

19
FROM rust:1.67 as launcher-builder
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
20
21
22

WORKDIR /usr/src

23
COPY rust-toolchain.toml rust-toolchain.toml
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
24
25
26
27
28
29
30
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
31
32
33
34

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

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

COPY server/Makefile server/Makefile

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

# Install specific version of transformers
61
RUN cd server && BUILD_EXTENSIONS="True" make install-transformers
Olivier Dehaene's avatar
Olivier Dehaene committed
62
63

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

# Install router
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
71
COPY --from=router-builder /usr/local/cargo/bin/text-generation-router /usr/local/bin/text-generation-router
Nicolas Patry's avatar
Nicolas Patry committed
72
# Install launcher
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
73
COPY --from=launcher-builder /usr/local/cargo/bin/text-generation-launcher /usr/local/bin/text-generation-launcher
Olivier Dehaene's avatar
Olivier Dehaene committed
74

75
76
ENTRYPOINT ["text-generation-launcher"]
CMD ["--json-output"]