mirror of
https://github.com/rommapp/romm.git
synced 2026-02-18 23:42:07 +01:00
6 lines
185 B
Bash
Executable File
6 lines
185 B
Bash
Executable File
#!/bin/bash
|
|
|
|
branch_name="$(git symbolic-ref HEAD 2>/dev/null)"
|
|
branch_name=${branch_name##refs/heads/}
|
|
docker build -t "rommapp/romm:local-${branch_name}" . --file ./docker/Dockerfile
|