diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-02-06 09:18:42 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-02-06 09:18:44 +0100 |
commit | 5271c0fa650ee48528aab21b7ac7ce4ffabac0ae (patch) | |
tree | 4a578b9fcb241df4000ac356b191a863c9b9ad68 /docker | |
parent | 9485b3e99a1e0276c717f1c7a2820d24efbb0b0c (diff) | |
download | vyos-build-5271c0fa650ee48528aab21b7ac7ce4ffabac0ae.tar.gz vyos-build-5271c0fa650ee48528aab21b7ac7ce4ffabac0ae.zip |
Docker: move Kernel "python-is-python2" requirement to the end
So other packages can not remove it.
Diffstat (limited to 'docker')
-rw-r--r-- | docker/Dockerfile | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index ac898a95..bddb072f 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -196,19 +196,6 @@ RUN apt-get update && apt-get install -y \ automake \ cpio -# Packages needed for Linux Kernel -# gnupg2 is required by Jenkins for the TAR verification -RUN apt-get update && apt-get install -y \ - gnupg2 \ - rsync \ - libncurses5-dev \ - flex \ - bison \ - bc \ - kmod \ - cpio \ - python-is-python2 - # Packages needed for Intel QAT out-of-tree drivers RUN apt-get update && apt-get install -y \ yasm @@ -512,13 +499,26 @@ RUN apt-get update && apt-get install -y \ libtommath-dev \ libz-dev +# Packages needed for Linux Kernel +# gnupg2 is required by Jenkins for the TAR verification +RUN apt-get update && apt-get install -y \ + gnupg2 \ + rsync \ + libncurses5-dev \ + flex \ + bison \ + bc \ + kmod \ + cpio \ + python-is-python2 + # Creating image for embedded systems needs this utilities to prepare a image file RUN apt-get update && apt-get install -y \ - parted udev zip + parted \ + udev \ + zip -# # fpm: a command-line program designed to help you build packages (e.g. deb) -# RUN apt-get update && apt-get install -y \ ruby \ ruby-dev \ |