diff options
author | fujinhua <fu.jinhua@zte.com.cn> | 2018-08-06 17:22:22 +0800 |
---|---|---|
committer | fujinhua <fu.jinhua@zte.com.cn> | 2018-08-06 17:22:22 +0800 |
commit | 85dfe290b9b4054bab63c8ecbaa5a2f771759947 (patch) | |
tree | 61d778370eefa26bb8d287eee4166aa1ae0cead0 | |
parent | 0d04fcbdfda8d8710dbdc4921cce650dc7adb461 (diff) |
Fix docker build error problem
Change-Id: Ia08f453acf320105e4a1c6bb3ac05f0c33452902
Issue-ID: VFC-1006
Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
-rw-r--r-- | docker/Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index 5397f11..ae4365f 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -6,8 +6,8 @@ ARG HTTPS_PROXY=${HTTPS_PROXY} ENV http_proxy $HTTP_PROXY ENV https_proxy $HTTPS_PROXY -RUN sed -i "s|set compatible|set nocompatible|" /etc/vim/vimrc.tiny \ & - echo "set backspace=2" >> /etc/vim/vimrc.tiny +RUN sed -i "s|set compatible|set nocompatible|" /etc/vim/vimrc.tiny +RUN echo "set backspace=2" >> /etc/vim/vimrc.tiny RUN echo "mysql-server mysql-server/root_password password root" | debconf-set-selections RUN echo "mysql-server mysql-server/root_password_again password root" | debconf-set-selections |