mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-03 09:49:23 +02:00
GP-0 improved the build docker image script to use relative path for the
build context parameter of docker build.
This commit is contained in:
parent
f053749e7f
commit
a794a26345
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ TAG=${VERSION}_${RELEASE}
|
||||||
# build docker image
|
# build docker image
|
||||||
IMAGE=ghidra/ghidra:$TAG
|
IMAGE=ghidra/ghidra:$TAG
|
||||||
echo building image $IMAGE
|
echo building image $IMAGE
|
||||||
docker build -f $SCRIPT_DIR/../docker/Dockerfile -t $IMAGE . 2>&1 | tee $SCRIPT_DIR/../docker/docker.log
|
docker build -f $SCRIPT_DIR/../docker/Dockerfile -t $IMAGE $SCRIPT_DIR/.. 2>&1 | tee $SCRIPT_DIR/../docker/docker.log
|
||||||
if [ $? != 0 ]; then
|
if [ $? != 0 ]; then
|
||||||
echo "ERROR: Docker Image Build Failed! See docker/docker.log to identify build error"
|
echo "ERROR: Docker Image Build Failed! See docker/docker.log to identify build error"
|
||||||
exit 1
|
exit 1
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue