Use path based SHELL in Makefiles. It was suggested that this is a better solution for make for cases when there is no /usr/bin/env. See: https://github.com/purpleidea/mgmt/pull/694#discussion_r1015596204
15 lines
344 B
Bash
Executable File
15 lines
344 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Stop on any error
|
|
set -e
|
|
|
|
script_directory="$( cd "$( dirname "$0" )" && pwd )"
|
|
project_directory=$script_directory/../..
|
|
|
|
# Specify the Docker image name
|
|
image_name='purpleidea/mgmt:development'
|
|
|
|
# Build the image
|
|
docker build -t $image_name \
|
|
--file=$project_directory/docker/Dockerfile.development $project_directory
|