mirror of
https://github.com/photoprism/photoprism.git
synced 2025-09-27 05:08:13 +08:00
17 lines
229 B
Bash
Executable File
17 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-ubuntu
|
|
|
|
# Wait 2s.
|
|
sleep 2
|
|
|
|
# Build ubuntu-based image.
|
|
make docker-demo-ubuntu
|