diff options
author | Corentin LABBE <clabbe@baylibre.com> | 2018-02-23 15:20:37 +0100 |
---|---|---|
committer | Corentin LABBE <clabbe@baylibre.com> | 2018-02-23 15:25:15 +0100 |
commit | 66e275b49a7073e5ab12c2b0ab2e5a40a8d52aaf (patch) | |
tree | 9d836939fb85cb7e14235c4759850b4a556d995a | |
parent | 21e70029a9a90bfb9183ea3bf60525bf72c62bd1 (diff) |
Fix "Remove tty/stdin options"
The commit "Remove tty/stdin options" miss a part of the changes, since Dockerfile still exec bash.
Remove bash and replace it with a forever sleep
-rw-r--r-- | lava-master/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lava-master/Dockerfile b/lava-master/Dockerfile index b10351c..607a79a 100644 --- a/lava-master/Dockerfile +++ b/lava-master/Dockerfile @@ -77,4 +77,4 @@ COPY settings.conf /etc/lava-server/ EXPOSE 69/udp 80 3079 5555 5556 -CMD /start.sh && bash +CMD /start.sh && while [ true ];do sleep 365d; done |