12 lines
232 B
Bash
12 lines
232 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
|
||
|
#
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
set -euo pipefail
|
||
|
|
||
|
./hack/populate_secrets.sh
|
||
|
|
||
|
exec "$(nix-build --no-out-link ./docker-images.nix)"
|