From 253e51110ce3793ca2e2f81b3fb45eb70c9bb980 Mon Sep 17 00:00:00 2001 From: Wolfgang Hottgenroth Date: Fri, 14 Aug 2020 12:27:57 +0000 Subject: [PATCH] fix python package naming in ubuntu --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 62814dd..17bc6f0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,10 +12,10 @@ RUN \ apt install -y make && \ apt install -y openssh-client && \ apt install -y git && \ - apt install -y python && \ - apt install -y python-requests && \ - apt install -y python-pycodestyle && \ - apt install -y python-yaml && \ + apt install -y python-is-python3 && \ + apt install -y python3-requests && \ + apt install -y python3-pycodestyle && \ + apt install -y python3-yaml && \ apt install -y gpg && \ apt install -y apt-transport-https && \ apt install -y wget && \