mirror of
https://github.com/rommapp/romm.git
synced 2026-06-28 14:56:01 +00:00
7 lines
210 B
Bash
Executable File
7 lines
210 B
Bash
Executable File
#!/bin/bash
|
|
|
|
VERSION="2.0.0"
|
|
branch_name="$(git symbolic-ref HEAD 2>/dev/null)"
|
|
branch_name=${branch_name##refs/heads/}
|
|
docker build -t zurdi15/romm:local-${VERSION}-${branch_name} . --file ./docker/Dockerfile
|