coder-devenv/vendor/docker-nixos/build.sh

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