summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2022-02-06 20:43:17 +0100
committerChristian Poessinger <christian@poessinger.com>2022-02-06 20:43:20 +0100
commitdb3571d7b18c049b04d78b27bd4f5a8e5bc7e868 (patch)
treecdd20fa4e0a8efdcdb38bc760be532420673aa22
parent08b27e45e5fcce049769a8b0a65c0df49f63926f (diff)
downloadvyos-build-db3571d7b18c049b04d78b27bd4f5a8e5bc7e868.tar.gz
vyos-build-db3571d7b18c049b04d78b27bd4f5a8e5bc7e868.zip
Docker: use python-is-python3 over python-is-python2 to keep dh-python
vyos-1x and other packages require dh-python. This is uninstalled when python-is-python2 is selected - thus switch to python-is-python3.
-rw-r--r--docker/Dockerfile6
1 files changed, 4 insertions, 2 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile
index ac898a95..522e13a6 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -207,7 +207,7 @@ RUN apt-get update && apt-get install -y \
bc \
kmod \
cpio \
- python-is-python2
+ python-is-python3
# Packages needed for Intel QAT out-of-tree drivers
RUN apt-get update && apt-get install -y \
@@ -514,7 +514,9 @@ RUN apt-get update && apt-get install -y \
# 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)