mirror of
https://github.com/nix-community/docker-nixpkgs.git
synced 2026-01-12 04:40:42 -05:00
9 lines
151 B
Bash
Executable File
9 lines
151 B
Bash
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 \
|
|
"$@"
|