-
Notifications
You must be signed in to change notification settings - Fork 252
Expand file tree
/
Copy pathbuild_docker.sh
More file actions
51 lines (36 loc) · 1.49 KB
/
build_docker.sh
File metadata and controls
51 lines (36 loc) · 1.49 KB
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
# This scripts takes a docker image that already contains the GRL dependencies, copies the local source code in and
# uploads that image into GCR. Once in GCR the docker image can be used for development.
# Each time you update the base image via a "bash docker_build_dependency_image.sh", there will be a slow upload process
# (minutes). However, if you are simply changing local code and not updating dependencies, uploading just takes a few seconds.
# Script to buid a GRL base image locally, example cmd is:
# bash build_docker.sh
set -e
DOCKERFILE=./Dockerfile
if [ ! -f "$DOCKERFILE" ]; then
echo "Error: Dockerfile not found at $DOCKERFILE"
exit 1
fi
export LOCAL_IMAGE_NAME=tunix_base_image
echo "Building base image: $LOCAL_IMAGE_NAME"
echo "Using Dockerfile: $DOCKERFILE"
# Use Docker BuildKit so we can cache pip packages.
export DOCKER_BUILDKIT=1
echo "Starting to build your docker image. This will take a few minutes but the image can be reused as you iterate."
build_ai_image() {
COMMIT_HASH=$(git rev-parse --short HEAD)
echo "Building Tunix Image at commit hash ${COMMIT_HASH}..."
DOCKER_COMMAND="docker"
if ! docker info >/dev/null 2>&1; then
DOCKER_COMMAND="sudo docker"
fi
$DOCKER_COMMAND build \
--network=host \
-t ${LOCAL_IMAGE_NAME} \
-f ${DOCKERFILE} .
}
build_ai_image
echo ""
echo "*************************
"
echo "Built your docker image and named it ${LOCAL_IMAGE_NAME}.
It only has the dependencies installed. "