diff options
author | Viktor Tikkanen <viktor.tikkanen@nokia.com> | 2016-02-19 09:45:04 +0200 |
---|---|---|
committer | Viktor Tikkanen <viktor.tikkanen@nokia.com> | 2016-02-19 09:48:18 +0200 |
commit | 78fd590723f24a723fe8ab32bf992b80f0956f25 (patch) | |
tree | a82964719449c3e37ee5dd47e07531cd21dad020 | |
parent | 4789710123718723adbc84ab6445ac141e074a9b (diff) |
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 <viktor.tikkanen@nokia.com>
-rw-r--r-- | docker/Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index 8424b5f97..caa733f66 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 |