From 8849562ef226dabfb3605a65fb259b2f03e852ec Mon Sep 17 00:00:00 2001 From: Wolfgang Hottgenroth Date: Mon, 2 Aug 2021 17:20:13 +0200 Subject: [PATCH] use python 3 --- Dockerfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index b98464b..c3887f1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,12 +14,12 @@ 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-pip && \ - apt install -y python-xmltodict && \ + apt install -y python3 && \ + apt install -y python3-requests && \ + apt install -y python3-pycodestyle && \ + apt install -y python3-yaml && \ + apt install -y python3-pip && \ + apt install -y python3-xmltodict && \ apt install -y gpg && \ apt install -y apt-transport-https && \ apt install -y wget && \