diff options
author | helenyao <yaohelan@huawei.com> | 2016-12-05 02:39:38 -0500 |
---|---|---|
committer | helenyao <yaohelan@huawei.com> | 2016-12-05 02:39:38 -0500 |
commit | 32452119f7532cd7dd0cab7e03c9d3777dd23ca1 (patch) | |
tree | dd01f8fd729891a41ec49c335c52196a9999c81f /docker/Dockerfile | |
parent | dc733c31177b0ffdc4c30b9c4801b765909f1c50 (diff) |
Sort multi-line arguments alphanumerically
JIRA: FUNCTEST-637
Whenever possible, ease later changes by sorting multi-line arguments alphanumerically. This will help you avoid duplication of packages and make the list much easier to update.
Change-Id: I85eae3a7019f5f2f30abf7a3f44896017acae9b7
Signed-off-by: helenyao <yaohelan@huawei.com>
Diffstat (limited to 'docker/Dockerfile')
-rw-r--r-- | docker/Dockerfile | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index dc772c5b8..4caf50d1a 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -57,26 +57,26 @@ WORKDIR ${HOME} # Packaged dependencies RUN apt-get update && apt-get install -y \ -ssh \ -sshpass \ +build-essential \ +bundler \ +crudini \ curl \ -git \ gcc \ -wget \ +git \ +libffi-dev \ +libgmp3-dev \ +libpq-dev \ +libssl-dev \ +libxml2-dev \ +libxslt-dev \ python-dev \ python-mock \ python-pip \ -bundler \ postgresql \ -build-essential \ -libpq-dev \ -libxslt-dev \ -libssl-dev \ -libgmp3-dev \ -libxml2-dev \ -libffi-dev \ -crudini \ ruby1.9.1-dev \ +ssh \ +sshpass \ +wget \ --no-install-recommends RUN pip install --upgrade pip |