Skip to content
Snippets Groups Projects
Commit d3a7dd17 authored by HustonMmmavr's avatar HustonMmmavr Committed by Kirill Yukhin
Browse files

static build: dockerfile entrypoint set to exec form

According to dockerfile reference, there are two forms of specifying
entrypoint: exec and shell. Exec form is preferrable and  allows use
this image in scripts.

Close #4960
parent 76157ef6
No related branches found
No related tags found
No related merge requests found
......@@ -95,4 +95,4 @@ RUN if [ -n "${RUN_TESTS}" ]; then \
/usr/bin/python test-run.py --force; \
fi
ENTRYPOINT /bin/bash
ENTRYPOINT ["/bin/bash"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment