mirror of
https://github.com/photoprism/photoprism.git
synced 2026-07-21 01:06:10 +00:00
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
|