"src/diffusers/schedulers/scheduling_ddim_flax.py" did not exist on "08c852290a060b8ac21f263f897e1c9e25e1eda3"
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
31
32
33

ARG MAMBA_VERSION=23.1.0-1

34
35
36
37
ENV LANG=C.UTF-8 \
    LC_ALL=C.UTF-8 \
    DEBIAN_FRONTEND=noninteractive \
    HUGGINGFACE_HUB_CACHE=/data \
38
    HF_HUB_ENABLE_HF_TRANSFER=1 \
39
    MODEL_ID=bigscience/bloom-560m \
40
    QUANTIZE=false \
41
    NUM_SHARD=1 \
42
43
44
45
    PORT=80 \
    CUDA_HOME=/usr/local/cuda \
    LD_LIBRARY_PATH="/opt/conda/lib:/usr/local/cuda/lib64:/usr/local/cuda/extras/CUPTI/lib64:$LD_LIBRARY_PATH" \
    PATH=$PATH:/opt/conda/bin:/usr/local/cuda/bin
Olivier Dehaene's avatar
Olivier Dehaene committed
46

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

49
50
51
52
53
RUN cd ~ && \
    curl -fsSL -v -o ~/mambaforge.sh -O  "https://github.com/conda-forge/miniforge/releases/download/${MAMBA_VERSION}/Mambaforge-${MAMBA_VERSION}-Linux-x86_64.sh" \
    chmod +x ~/mambaforge.sh && \
    bash ~/mambaforge.sh -b -p /opt/conda && \
    rm ~/mambaforge.sh
Olivier Dehaene's avatar
v0.1.0  
Olivier Dehaene committed
54

55
WORKDIR /usr/src
56

57
58
# Install torch
RUN pip install torch==2.0.0 --extra-index-url https://download.pytorch.org/whl/cu118 --no-cache-dir
Olivier Dehaene's avatar
Olivier Dehaene committed
59

60
61
62
# Install specific version of flash attention
COPY server/Makefile-flash-att server/Makefile
RUN cd server && make install-flash-attention
Olivier Dehaene's avatar
Olivier Dehaene committed
63

64
65
66
# Install specific version of transformers
COPY server/Makefile-transformers server/Makefile
RUN cd server && BUILD_EXTENSIONS="True" make install-transformers
67

68
COPY server/Makefile server/Makefile
69

Olivier Dehaene's avatar
Olivier Dehaene committed
70
# Install server
Nicolas Patry's avatar
Nicolas Patry committed
71
COPY proto proto
Olivier Dehaene's avatar
Olivier Dehaene committed
72
73
COPY server server
RUN cd server && \
Nicolas Patry's avatar
Nicolas Patry committed
74
    make gen-server && \
75
    pip install ".[bnb]" --no-cache-dir
Olivier Dehaene's avatar
Olivier Dehaene committed
76
77

# Install router
78
COPY --from=builder /usr/src/target/release/text-generation-router /usr/local/bin/text-generation-router
Nicolas Patry's avatar
Nicolas Patry committed
79
# Install launcher
80
COPY --from=builder /usr/src/target/release/text-generation-launcher /usr/local/bin/text-generation-launcher
Olivier Dehaene's avatar
Olivier Dehaene committed
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"]

90
# Final image
91
92
FROM base

93
94
ENTRYPOINT ["text-generation-launcher"]
CMD ["--json-output"]