From: Viktor Tikkanen Date: Fri, 19 Feb 2016 07:45:04 +0000 (+0200) Subject: Corrected using of echo command X-Git-Tag: 0.2~1657 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=78fd590723f24a723fe8ab32bf992b80f0956f25;p=functest-xtesting.git Corrected using of echo command Full path of echo is needed when using -e option in Docker file. Otherwise -e will be output as part of the string. Change-Id: Ic226209a3ef5dac991ccae996f6e7afa0061fccf Signed-off-by: Viktor Tikkanen --- diff --git a/docker/Dockerfile b/docker/Dockerfile index 8424b5f9..caa733f6 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -83,6 +83,6 @@ ADD http://download.cirros-cloud.net/0.3.4/cirros-0.3.4-x86_64-disk.img /home/op RUN gpg --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 RUN curl -L https://get.rvm.io | bash -s stable -RUN echo -e "set nocompatible\nset backspace=2" >> /home/opnfv/.vimrc +RUN /bin/echo -e "set nocompatible\nset backspace=2" >> /home/opnfv/.vimrc RUN echo "set nocompatible" >> /home/opnfv/.exrc -RUN echo "alias ll='ls -lh'" >> /home/opnfv/.bash_aliases \ No newline at end of file +RUN echo "alias ll='ls -lh'" >> /home/opnfv/.bash_aliases