We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5de2f42 commit 7d9078fCopy full SHA for 7d9078f
Base/Dockerfile
@@ -58,7 +58,7 @@ RUN mkdir -p /opt/bin
58
#======================================
59
# Add Grid check script
60
61
-COPY check-grid.sh /opt/bin/
+COPY check-grid.sh entry_point.sh /opt/bin/
62
RUN chmod +x /opt/bin/check-grid.sh
63
64
@@ -86,4 +86,4 @@ RUN sudo mkdir -p /opt/selenium \
86
&& sudo chown -R seluser:seluser /var/log/supervisor
87
88
89
-CMD ["/usr/bin/supervisord", "--configuration", "/etc/supervisord.conf"]
+CMD ["/opt/bin/entry_point.sh"]
Base/entry_point.sh
@@ -0,0 +1,3 @@
1
+#!/usr/bin/env bash
2
+
3
+/usr/bin/supervisord --configuration /etc/supervisord.conf
0 commit comments