#!/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 -l 50 -- docker build \ -t "git.devcomp.xyz/devcomp/nixos:$NIXOS_TAG" \ -f Dockerfile \ --push .