2023-11-14 23:04:56 +09:00
|
|
|
#!/bin/sh
|
2023-11-12 05:31:20 +09:00
|
|
|
set -eu
|
|
|
|
|
2023-11-14 23:04:56 +09:00
|
|
|
. neko/update/utils
|
2023-11-12 05:31:20 +09:00
|
|
|
|
|
|
|
pull() {
|
|
|
|
say "Pulling the image..."
|
|
|
|
docker pull docker.io/naskya/firefish
|
|
|
|
}
|
|
|
|
|
|
|
|
if ! pull; then
|
|
|
|
say "awawa, the image may not be compatible with your environment..."
|
|
|
|
say "Gonnya try building the image locally!"
|
2023-11-14 23:04:56 +09:00
|
|
|
|
|
|
|
COMMIT_HASH=$(printf "%s" "$(git rev-parse HEAD)" | cut -c 1-7)
|
|
|
|
docker build --tag docker.io/naskya/firefish --build-arg COMMIT="${COMMIT_HASH}" .
|
2023-11-12 05:31:20 +09:00
|
|
|
fi
|
|
|
|
|
|
|
|
say "Done!"
|