11 lines
232 B
Bash
Executable file
11 lines
232 B
Bash
Executable file
#!/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)"
|