mirror of
https://github.com/photoprism/photoprism.git
synced 2026-07-18 00:59:38 +00:00
16 lines
229 B
Bash
Executable file
16 lines
229 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Exit on error.
|
|
set -ex
|
|
|
|
# Use QEMU for multi-arch builds.
|
|
scripts/install-qemu.sh
|
|
|
|
# Build preview image.
|
|
make docker-preview-debian
|
|
|
|
# Wait 2s.
|
|
sleep 2
|
|
|
|
# Build debian-based image.
|
|
make docker-demo-debian
|