We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2075b1 commit a771f1fCopy full SHA for a771f1f
bin/docker/cmd.sh
@@ -8,8 +8,7 @@ case "$COUNTLY_CONTAINER" in
8
;;
9
10
"frontend" )
11
- npx grunt dist-all
12
- exec /usr/local/bin/node /opt/countly/frontend/express/app.js
+ exec /usr/local/bin/node /opt/countly/frontend/express/app.js
13
14
15
* )
bin/docker/postinstall.sh
@@ -23,4 +23,9 @@ else
23
/usr/local/bin/node "/opt/countly/plugins/$plugin/install.js"
24
echo "[docker] Done installing ${plugin}."
25
done <<< "$a"
26
+
27
+ if [ "$COUNTLY_CONTAINER" == "frontend" ]; then
28
+ (cd /opt/countly && npx grunt dist-all)
29
+ fi
30
31
fi
0 commit comments