Skip to content

Commit 5d6cf24

Browse files
authored
Merge pull request #1 from surevs/Dockerfile-patch
Dockerfile defaults should be executable ready
2 parents dbd7cee + 5180f7e commit 5d6cf24

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)