16 lines
321 B
Bash
Executable File
16 lines
321 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
|
|
|
|
PROJECT="dropshell-build-base"
|
|
|
|
ARCH=$(uname -m)
|
|
|
|
# Build multi-platform image and push it
|
|
docker build \
|
|
-t "dropshell-build-base:test" \
|
|
-f "${SCRIPT_DIR}/Dockerfile.dropshell-build-base" \
|
|
${SCRIPT_DIR}
|