mirror of
https://github.com/nix-community/docker-nixpkgs.git
synced 2026-09-04 14:04:58 -04:00
9 lines
151 B
Python
Executable File
9 lines
151 B
Python
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# build *all* the docker images
|
|
exec nix-build release.nix \
|
|
--no-out-link \
|
|
--option sandbox true \
|
|
"$@"
|