support executing custom commands when building image
This commit is contained in:
Executable
+6
@@ -0,0 +1,6 @@
|
||||
#!/bin/sh
|
||||
CUR_DIR=$(dirname "$0");
|
||||
|
||||
if [ -x "${CUR_DIR}/custom-backend-pre-setup.sh" ]; then
|
||||
"${CUR_DIR}"/custom-backend-pre-setup.sh
|
||||
fi
|
||||
Executable
+6
@@ -0,0 +1,6 @@
|
||||
#!/bin/sh
|
||||
CUR_DIR=$(dirname "$0");
|
||||
|
||||
if [ -x "${CUR_DIR}/custom-frontend-pre-setup.sh" ]; then
|
||||
"${CUR_DIR}"/custom-frontend-pre-setup.sh
|
||||
fi
|
||||
Reference in New Issue
Block a user