11 lines
161 B
Bash
Executable file
11 lines
161 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
if [ "$1" = "--continue" ]; then
|
|
OPTS=""
|
|
else
|
|
OPTS="--no-cache"
|
|
fi
|
|
|
|
docker build ${OPTS} -t puremourning/vimspector:test image/
|