dropshell-build/build-base/debug-build.sh
j842 8cfe46c92c
Some checks failed
dropshell-build / build (push) Failing after 6s
better
2025-06-09 17:04:04 +12:00

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}