photoprism/scripts/deploy-preview.sh

20 lines
235 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2022-03-11 09:52:59 +00:00
# exit on error
set -ex
2022-03-11 09:52:59 +00:00
# install QEMU for multi-arch builds
scripts/install-qemu.sh
# run tests
2021-11-23 19:42:01 +00:00
scripts/test.sh
2022-03-11 09:52:59 +00:00
# build preview image
make docker-preview
2022-03-11 09:52:59 +00:00
# wait 2s
sleep 2
2022-03-11 09:52:59 +00:00
# build demo image
2021-12-03 15:49:43 +00:00
make docker-demo