diff mbox series

[layerindex-web,2/6] Dockerfile: sort apt packages alphabetically

Message ID f5bad078f92ccf6012eaca002eaeff3e0aa049d5.1705341088.git.tim.orling@konsulko.com
State New
Headers show
Series [layerindex-web,1/6] dockersetup: use .zst not .zstd | expand

Commit Message

Tim Orling Jan. 15, 2024, 5:56 p.m. UTC
Make it is a bit easier to see what is installed by
sorting the package list alphabetically.

Signed-off-by: Tim Orling <tim.orling@konsulko.com>
---
 Dockerfile | 26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)
diff mbox series

Patch

diff --git a/Dockerfile b/Dockerfile
index 02948b6..0f3afc4 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -23,26 +23,26 @@  RUN DEBIAN_FRONTEND=noninteractive apt-get update \
         && update-locale \
     && apt-get install -y --no-install-recommends \
 	autoconf \
+	cpio \
+	curl \
 	g++ \
 	gcc \
-	make \
-	python2 \
-	python3-pip \
-	python3-mysqldb \
-	python3-dev \
-	python3-wheel \
-	zlib1g-dev \
+	git \
 	libfreetype6-dev \
 	libjpeg-dev \
 	libmariadb-dev-compat \
+	make \
 	netcat-openbsd \
-	curl \
-	wget \
-	git \
-	vim \
-	rpm2cpio \
+	python2 \
+	python3-dev \
+	python3-mysqldb \
+	python3-pip \
+	python3-wheel \
 	rpm \
-	cpio \
+	rpm2cpio \
+	vim \
+	wget \
+	zlib1g-dev \
     && echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen \
 	&& locale-gen en_US.UTF-8 \
 	&& update-locale \