We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f04f08 commit 8d42400Copy full SHA for 8d42400
wis2box-management/Dockerfile
@@ -68,6 +68,8 @@ RUN cd /app \
68
# add wis2box user
69
&& useradd -ms /bin/bash wis2box
70
71
+RUN pywcmp bundle sync
72
+
73
WORKDIR /home/wis2box
74
75
# add wis2box.cron to crontab
wis2box-management/docker/entrypoint.sh
@@ -50,7 +50,8 @@ if [ ! -f /data/wis2box/.ssh/id_rsa ]; then
50
echo "MinIO is available, proceed with setup"
51
fi
52
53
-pywcmp bundle sync
+# run pywcmp bundle sync in background to avoid hanging in case of network issues
54
+pywcmp bundle sync &
55
56
# wis2box commands
57
# TODO: avoid re-creating environment if it already exists
0 commit comments