Created
August 24, 2017 10:11
-
-
Save ardyantohermawan/23653f5af381427b7333bbb7f72cd34f to your computer and use it in GitHub Desktop.
Docker image builder
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
NAMESPACE="$1" | |
NAME="$2" | |
TAG="$3" | |
echo "==================================" | |
echo "|| ||" | |
echo "|| Docker image builder ||" | |
echo "|| ||" | |
echo "==================================" | |
printf "\n\n" | |
if [[ -z "$NAMESPACE" ]]; then | |
echo "Please insert the namespace"; | |
echo "Usage: /bin/bash builder.sh [namespace] [name] [tag]"; | |
exit 1; | |
fi | |
if [[ -z "$NAME" ]]; then | |
echo "Please insert the name"; | |
echo "Usage: /bin/bash builder.sh [namespace] [name] [tag]"; | |
exit 1; | |
fi | |
if [[ -z "$TAG" ]]; then | |
echo "Please insert the tag"; | |
echo "Usage: /bin/bash builder.sh [namespace] [name] [tag]"; | |
exit 1; | |
fi | |
compile() { | |
echo "start compiling application..."; | |
printf "\n\n" | |
docker run --rm -it -v "$GOPATH":/gopath -v "$(pwd)":/app \ | |
-e "GOPATH=/gopath" -w /app golang:latest \ | |
sh -c 'CGO_ENABLED=0 go build -a --installsuffix cgo --ldflags="-s" -o '"$NAME"; | |
echo "compile finished"; | |
printf "\n\n" | |
} | |
buildImage() { | |
printf "\n\n" | |
echo "start building docker image..."; | |
docker build -t $NAMESPACE/$NAME:$TAG . | |
echo $NAMESPACE/$NAME:$TAG "build finished"; | |
printf "\n\n" | |
} | |
compile | |
buildImage |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment