Mercurial > hg
diff contrib/docker/ubuntu.template @ 34423:1baa077214ae
docker: try to follow the best practices for writing Dockerfiles
Merged multiple RUN instructions and sorted the arguments alphabetically
Reference: https://docs.docker.com/engine/userguide/eng-image/dockerfile_best-practices/
author | muxator <a.mux@inwind.it> |
---|---|
date | Sun, 01 Oct 2017 01:02:22 +0200 |
parents | e02bae37af30 |
children |
line wrap: on
line diff
--- a/contrib/docker/ubuntu.template Thu Aug 24 18:40:30 2017 +0200 +++ b/contrib/docker/ubuntu.template Sun Oct 01 01:02:22 2017 +0200 @@ -2,11 +2,11 @@ RUN apt-get update && apt-get install -y \ build-essential \ debhelper \ + devscripts \ dh-python \ - devscripts \ less \ python \ python-all-dev \ python-docutils \ - zip \ - unzip + unzip \ + zip