From c3fe221210e0bf1ddf8c4fdd0b57fb0d1324c171 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0tetiar?= Date: Mon, 5 Aug 2019 10:42:49 +0200 Subject: [PATCH] circleci: add python3 package into Docker image MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We've switched to Python3 some time ago so it would make sense to provide Python3 in the CI image as well. Ref: https://github.com/openwrt/packages/pull/9584#issuecomment-518038631 Reported-by: Rosen Penev Signed-off-by: Petr Štetiar --- .circleci/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.circleci/Dockerfile b/.circleci/Dockerfile index c488a7926..274edb8e4 100644 --- a/.circleci/Dockerfile +++ b/.circleci/Dockerfile @@ -6,6 +6,7 @@ FROM debian:9 # v1.0.1 - Run as non-root, add unzip, xz-utils # v1.0.2 - Add bzr # v1.0.3 - Verify usign signatures +# v1.0.4 - Add support for Python3 RUN apt update && apt install -y \ build-essential \ @@ -18,6 +19,7 @@ git \ libncurses5-dev \ libssl-dev \ python \ +python3 \ signify-openbsd \ subversion \ time \