mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-26 13:46:39 +00:00
8 lines
139 B
Bash
8 lines
139 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -eu
|
||
|
|
||
|
BRANCH_NAME="$(git rev-parse --abbrev-ref HEAD)"
|
||
|
|
||
|
docker build -t "superseriousbusiness/gotosocial:${BRANCH_NAME}" .
|