Skip to content

Commit 5180f7e

Browse files
authored
Dockerfile defaults should be executable ready
The Shell script files which are present are to be made executable post copying to keep them ready for any executions on fly
1 parent dbd7cee commit 5180f7e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,13 @@ RUN cd /SeleniumBase && python setup.py install
107107
# Create entrypoint and grab example tests
108108
#==========================================
109109
COPY integrations/docker/docker-entrypoint.sh /
110+
RUN chmod +x docker-entrypoint.sh
110111
COPY integrations/docker/run_docker_test_in_firefox.sh /
112+
RUN chmod +x run_docker_test_in_firefox.sh
111113
COPY integrations/docker/run_docker_test_in_chrome.sh /
114+
RUN chmod +x run_docker_test_in_chrome.sh
112115
COPY integrations/docker/run_docker_test_in_phantomjs.sh /
116+
RUN chmod +x run_docker_test_in_phantomjs.sh
113117
COPY integrations/docker/docker_config.cfg /SeleniumBase/examples/
114118
ENTRYPOINT ["/docker-entrypoint.sh"]
115119
CMD ["/bin/bash"]

0 commit comments

Comments
 (0)