13 lines
346 B
Bash
Executable File
13 lines
346 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
|
|
|
|
# Build with progress and no cache to see which step fails
|
|
docker build \
|
|
--progress=plain \
|
|
--no-cache \
|
|
-t "gitea.jde.nz/public/dropshell-build-base:latest" \
|
|
-f "${SCRIPT_DIR}/Dockerfile.dropshell-build-base" \
|
|
${SCRIPT_DIR} |