From b3fa8a0f86d0869d46e1f69d8eb0d4da55d6d15a Mon Sep 17 00:00:00 2001 From: zhengwei6082 Date: Tue, 26 Sep 2017 13:41:38 +0800 Subject: [PATCH] =?UTF-8?q?writing=20convention:=20do=20not=20use=20?= =?UTF-8?q?=E2=80=9C-y=E2=80=9D=20for=20package=20install?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adhering to coding conventions. Refer to ``Code conventions`` at https://docs.openstack.org/contributor-guide/ for details. Change-Id: Ic8b166e17ab0d1cbbf2bb6b831f5e53cae6797ba --- doc/source/admin/ways-to-install.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/admin/ways-to-install.rst b/doc/source/admin/ways-to-install.rst index 52518de61..d007cec3c 100644 --- a/doc/source/admin/ways-to-install.rst +++ b/doc/source/admin/ways-to-install.rst @@ -127,8 +127,8 @@ Here is single Dockerfile snippet you can use to run your Docker container: RUN apt-get update RUN apt-get dist-upgrade -y - RUN apt-get install -y vim net-tools - RUN apt-get install -yt experimental watcher-api + RUN apt-get install vim net-tools + RUN apt-get install experimental watcher-api CMD ["/usr/bin/watcher-api"]