writing convention: do not use “-y” for package install

Adhering to coding conventions. Refer to ``Code conventions`` at
https://docs.openstack.org/contributor-guide/ for details.

Change-Id: Ic8b166e17ab0d1cbbf2bb6b831f5e53cae6797ba
This commit is contained in:
zhengwei6082
2017-09-26 13:41:38 +08:00
committed by Wei Zheng
parent 773b20a05f
commit b3fa8a0f86

View File

@@ -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"]