14 lines
276 B
Bash
Executable file
14 lines
276 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
|
|
|
|
docker build \
|
|
--platform=linux/amd64,linux/arm64 \
|
|
-t "git.devcomp.xyz/devcomp/nixos:$NIXOS_TAG" \
|
|
-f Dockerfile \
|
|
--push .
|