forked from ray-project/ray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-docker.sh
executable file
·100 lines (85 loc) · 2.91 KB
/
build-docker.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
#!/bin/bash
# shellcheck disable=SC2086
# This script is for users to build docker images locally. It is most useful for users wishing to edit the
# base-deps, or ray images. This script is *not* tested.
GPU=""
BASE_IMAGE="ubuntu:22.04"
WHEEL_URL="https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray-3.0.0.dev0-cp39-cp39-manylinux2014_x86_64.whl"
CPP_WHEEL_URL="https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray_cpp-3.0.0.dev0-cp39-cp39-manylinux2014_x86_64.whl"
PYTHON_VERSION="3.9"
BUILD_ARGS=()
while [[ $# -gt 0 ]]; do
case "$1" in
--gpu)
GPU="-gpu"
BASE_IMAGE="nvidia/cuda:11.8.0-cudnn8-devel-ubuntu22.04"
;;
--base-image)
# Override for the base image.
shift
BASE_IMAGE="$1"
;;
--no-cache-build)
BUILD_ARGS+=("--no-cache")
;;
--shas-only)
# output the SHA sum of each build. This is useful for scripting tests,
# especially when builds of different versions are running on the same machine.
# It also can facilitate cleanup.
OUTPUT_SHA=YES
BUILD_ARGS+=("-q")
;;
--python-version)
# Python version to install. e.g. 3.9
# Changing python versions may require a different wheel.
# If not provided defaults to 3.9
shift
PYTHON_VERSION="$1"
;;
*)
echo "Usage: build-docker.sh [ --gpu ] [ --base-image ] [ --no-cache-build ] [ --shas-only ] [ --build-development-image ] [ --build-examples ] [ --python-version ]"
exit 1
esac
shift
done
export DOCKER_BUILDKIT=1
# Build base-deps image
if [[ "$OUTPUT_SHA" != "YES" ]]; then
echo "=== Building base-deps image ===" >/dev/stderr
fi
BUILD_CMD=(
docker build "${BUILD_ARGS[@]}"
--build-arg BASE_IMAG="$BASE_IMAGE"
--build-arg PYTHON_VERSION="${PYTHON_VERSION}"
-t "rayproject/base-deps:dev$GPU" "docker/base-deps"
)
if [[ "$OUTPUT_SHA" == "YES" ]]; then
IMAGE_SHA="$("${BUILD_CMD[@]}")"
echo "rayproject/base-deps:dev$GPU SHA:$IMAGE_SHA"
else
"${BUILD_CMD[@]}"
fi
# Build ray image
if [[ "$OUTPUT_SHA" != "YES" ]]; then
echo "=== Building ray image ===" >/dev/stderr
fi
RAY_BUILD_DIR="$(mktemp -d)"
mkdir -p "$RAY_BUILD_DIR/.whl"
wget --quiet "$WHEEL_URL" -P "$RAY_BUILD_DIR/.whl"
wget --quiet "$CPP_WHEEL_URL" -P "$RAY_BUILD_DIR/.whl"
cp python/requirements_compiled.txt "$RAY_BUILD_DIR"
cp docker/ray/Dockerfile "$RAY_BUILD_DIR"
WHEEL="$(basename "$WHEEL_DIR"/.whl/ray-*.whl)"
BUILD_CMD=(
docker build "${BUILD_ARGS[@]}"
--build-arg FULL_BASE_IMAGE="rayproject/base-deps:dev$GPU"
--build-arg WHEEL_PATH=".whl/${WHEEL}"
-t "rayproject/ray:dev$GPU" "$RAY_BUILD_DIR"
)
if [[ "$OUTPUT_SHA" == "YES" ]]; then
IMAGE_SHA="$("${BUILD_CMD[@]}")"
echo "rayproject/ray:dev$GPU SHA:$IMAGE_SHA"
else
"${BUILD_CMD[@]}"
fi
rm -rf "$WHEEL_DIR"