chore: aligning package order

This commit is contained in:
Callum James Tait 2021-05-24 22:49:16 +01:00 committed by Yusuke Kuoka
parent 818dfd6515
commit c3a6e45920
1 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,6 @@ RUN apt update -y \
&& add-apt-repository -y ppa:git-core/ppa \ && add-apt-repository -y ppa:git-core/ppa \
&& apt update -y \ && apt update -y \
&& apt install -y --no-install-recommends \ && apt install -y --no-install-recommends \
software-properties-common \
build-essential \ build-essential \
curl \ curl \
ca-certificates \ ca-certificates \
@ -15,6 +14,7 @@ RUN apt update -y \
git \ git \
iproute2 \ iproute2 \
iputils-ping \ iputils-ping \
iptables \
jq \ jq \
libunwind8 \ libunwind8 \
locales \ locales \
@ -23,6 +23,8 @@ RUN apt update -y \
parallel \ parallel \
rsync \ rsync \
shellcheck \ shellcheck \
supervisor \
software-properties-common \
sudo \ sudo \
telnet \ telnet \
time \ time \
@ -32,8 +34,6 @@ RUN apt update -y \
wget \ wget \
zip \ zip \
zstd \ zstd \
iptables \
supervisor \
python3-pip \ python3-pip \
&& ln -sf /usr/bin/python3 /usr/bin/python \ && ln -sf /usr/bin/python3 /usr/bin/python \
&& ln -sf /usr/bin/pip3 /usr/bin/pip \ && ln -sf /usr/bin/pip3 /usr/bin/pip \