13 lines
274 B
Bash
Executable file
13 lines
274 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -exEuo pipefail
|
|
|
|
if [ -z "$NIXOS_TAG" ]; then
|
|
echo "Error: NIXOS_TAG is not set or is empty."
|
|
exit 1
|
|
fi
|
|
|
|
cpulimit --limit 50 --monitor-forks -- docker build \
|
|
-t "git.devcomp.xyz/devcomp/nixos:$NIXOS_TAG" \
|
|
-f Dockerfile \
|
|
--push .
|