forked from Kaggle/docker-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild
More file actions
executable file
·42 lines (35 loc) · 738 Bytes
/
build
File metadata and controls
executable file
·42 lines (35 loc) · 738 Bytes
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
#!/bin/bash
set -e
usage() {
cat << EOF
Usage: $0 [OPTIONS]
Build new Tensorflow wheels for use in the Kaggle Docker Python base images.
Options:
-c, --use-cache Use layer cache when building a new image.
EOF
}
CACHE_FLAG='--no-cache'
IMAGE_TAG='kaggle/python-tensorflow-whl'
while :; do
case "$1" in
-h|--help)
usage
exit
;;
-c|--use-cache)
CACHE_FLAG=''
;;
-?*)
usage
printf 'ERROR: Unknown option: %s\n' "$1" >&2
exit
;;
*)
break
esac
shift
done
readonly CACHE_FLAG
readonly IMAGE_TAG
set -x
docker build --rm --pull $CACHE_FLAG -t "$IMAGE_TAG" .