4fc131c1b9
Signed-off-by: Michael Mayer <michael@photoprism.app>
13 lines
184 B
Bash
Executable file
13 lines
184 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Exit on error.
|
|
set -ex
|
|
|
|
# Use QEMU for multi-arch builds.
|
|
scripts/install-qemu.sh
|
|
|
|
# Run test suite.
|
|
scripts/test.sh
|
|
|
|
# Build release image.
|
|
make docker-release
|