summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfujinhua <fu.jinhua@zte.com.cn>2018-08-06 17:21:20 +0800
committerfujinhua <fu.jinhua@zte.com.cn>2018-08-06 17:21:20 +0800
commit32e5672e8a88b1c955a9f16da6c30044921eaec1 (patch)
treea23b59268a3218c0e7e2d2e0b562004509a6377d
parentcb6915484050cb9d58cddc8814115d6f15aed471 (diff)
Fix docker build error problem
Change-Id: I7f436800cc6b649d799a6e6e7921c74a35d9b507 Issue-ID: VFC-1006 Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
-rw-r--r--zte/vmanager/docker/Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/zte/vmanager/docker/Dockerfile b/zte/vmanager/docker/Dockerfile
index 438fc742..a9414d79 100644
--- a/zte/vmanager/docker/Dockerfile
+++ b/zte/vmanager/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 apt-get update && \
apt-get install -y python-virtualenv && \