forked from ray-project/ray
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathbuild-docker-ant.sh
121 lines (105 loc) · 3.44 KB
/
build-docker-ant.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#!/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"
PYTHON_VERSION="3.9"
ANT_RAY_VERSION=""
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"
;;
--ant-ray-version)
# Specify the ant-ray version. e.g., 1.2.3. If not provided, the latest version is used.
shift
ANT_RAY_VERSION="$1"
;;
*)
echo "Usage: build-docker-ant.sh [ --gpu ] [ --base-image <image> ] [ --no-cache-build ] [ --shas-only ] [ --python-version <version> ] [ --ant-ray-version <version> ]"
exit 1
esac
shift
done
export DOCKER_BUILDKIT=1
# Determine ant-ray package specification
if [[ -n "$ANT_RAY_VERSION" ]]; then
ANT_RAY_PACKAGE="ant-ray==$ANT_RAY_VERSION"
else
ANT_RAY_PACKAGE="ant-ray"
fi
# 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 "antgroup/base-deps:dev$GPU" -f "docker/base-deps/Dockerfile" .
)
if [[ "$OUTPUT_SHA" == "YES" ]]; then
IMAGE_SHA="$("${BUILD_CMD[@]}")"
echo "antgroup/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"
chmod 777 "$RAY_BUILD_DIR/.whl"
# Download ant-ray wheel using the defined package version spec
docker run --rm \
-v "$RAY_BUILD_DIR/.whl":/wheels \
--user "$(id -u):$(id -g)" \
antgroup/base-deps:dev$GPU \
pip download --no-cache-dir --quiet --no-deps --only-binary=:all: "$ANT_RAY_PACKAGE" -d /wheels
WHEEL_FILE=$(ls "$RAY_BUILD_DIR"/.whl/*.whl 2>/dev/null | head -n1)
if [[ -z "$WHEEL_FILE" ]]; then
echo "Error: No wheel downloaded for ant-ray" >&2
exit 1
fi
WHEEL="$(basename "$RAY_BUILD_DIR"/.whl/ant*.whl)"
cp python/requirements_compiled.txt "$RAY_BUILD_DIR"
cp docker/ray/Dockerfile "$RAY_BUILD_DIR"
BUILD_CMD=(
docker build "${BUILD_ARGS[@]}"
--build-arg FULL_BASE_IMAGE="antgroup/base-deps:dev$GPU"
--build-arg WHEEL_PATH=".whl/${WHEEL}"
-t "antgroup/ant-ray:dev$GPU" "$RAY_BUILD_DIR"
)
if [[ "$OUTPUT_SHA" == "YES" ]]; then
IMAGE_SHA="$("${BUILD_CMD[@]}")"
echo "antgroup/ant-ray:dev$GPU SHA:$IMAGE_SHA"
else
"${BUILD_CMD[@]}"
fi
rm -rf "$RAY_BUILD_DIR"