Skip to content

Commit ab500d5

Browse files
committed
964 docker - improve build script - allow arguments, provide usage message to caller and tag with latest if caller requested
1 parent f42acc7 commit ab500d5

File tree

1 file changed

+36
-3
lines changed

1 file changed

+36
-3
lines changed

docker-build.sh

+36-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,40 @@
11
#!/bin/sh
22

3+
if [ -z $1 ]; then
4+
echo "Required argument misses. Please provide docker image tag."
5+
echo ""
6+
echo "USAGE"
7+
echo " docker-build.sh tag [latest]"
8+
echo "DESCRIPTION"
9+
echo " tag\t\t- arbitrary docker image tag. In bytechef we use yyyyMMdd to reflect date of image build"
10+
echo " latest\t- optional flag that would instruct script to tag image with additional tag with value \`latest\`"
11+
12+
exit 1
13+
fi
14+
315
cd server/apps/server-app
416
../../../gradlew clean build -Pprod
5-
docker build -t bytechef-server .
6-
cd ../../../
7-
docker build -t bytechef .
17+
18+
if [ -n "$2" ] && [ "latest" = "$2" ]; then
19+
echo "Building docker image with tag \`$2\`"
20+
21+
docker build --platform linux/amd64 -t bytechef/bytechef-server:$2 .
22+
fi
23+
24+
docker build --platform linux/amd64 -t bytechef/bytechef-server:$1 .
25+
26+
cd ../../../client
27+
28+
npm install
29+
30+
npm run build
31+
32+
cd ..
33+
34+
if [ -n "$2" ] && [ "latest" = "$2" ]; then
35+
echo "Building docker image with tag \`$2\`"
36+
37+
docker build --platform linux/amd64 -t bytechef/bytechef:$2 .
38+
fi
39+
40+
docker build --platform linux/amd64 -t bytechef/bytechef:$1 .

0 commit comments

Comments
 (0)