Plex-Bot-Music/deploy/build.sh
2020-08-10 02:16:11 -06:00

15 lines
244 B
Bash
Executable File

#!/usr/bin/env bash
VERSION=$(python PlexBot/__version__.py)
docker build -t "jarulsamy/plex-bot:$VERSION" .
if [ $? -eq 0 ]
then
echo "Successfully build docker image."
exit 0
else
echo "Failed to build docker image." >&2
exit 1
fi