File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 8
8
printf ' \tbuild: build and tag the image\n'
9
9
printf ' \tpush: push the tags to Docker Hub\n'
10
10
printf ' Options:\n'
11
+ printf ' -f: create freeze file\n'
11
12
printf ' -c: targeted pandoc commit, e.g. 2.9.2.1\n'
12
13
printf ' -d: directory\n'
13
14
printf ' -r: targeted image repository/flavor, e.g. core or latex\n'
@@ -16,7 +17,7 @@ usage ()
16
17
printf ' -v: increase verbosity\n'
17
18
}
18
19
19
- if ! args=$( getopt ' c:d:pr:s:t:v' " $@ " ) ; then
20
+ if ! args=$( getopt ' c:d:f: pr:s:t:v' " $@ " ) ; then
20
21
usage && exit 1
21
22
fi
22
23
# The variable is intentionally left unquoted.
@@ -217,6 +218,7 @@ case "$action" in
217
218
# # build images
218
219
# The use of $(tag_arguments) is correct here
219
220
# shellcheck disable=SC2046
221
+ printf " Run docker build $@ "
220
222
docker build " $@ " \
221
223
$( tag_arguments) \
222
224
--build-arg pandoc_commit=" ${pandoc_commit} " \
You can’t perform that action at this time.
0 commit comments