mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-12 00:34:13 +01:00
14 lines
184 B
Bash
Executable File
14 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
|