File tree 1 file changed +36
-3
lines changed
1 file changed +36
-3
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
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
+
3
15
cd server/apps/server-app
4
16
../../../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 .
You can’t perform that action at this time.
0 commit comments