circleci: add python3 package into Docker image
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 <rosenp@gmail.com> Signed-off-by: Petr Štetiar <ynezz@true.cz>
This commit is contained in:
parent
9436ff4261
commit
c3fe221210
1 changed files with 2 additions and 0 deletions
|
@ -6,6 +6,7 @@ FROM debian:9
|
||||||
# v1.0.1 - Run as non-root, add unzip, xz-utils
|
# v1.0.1 - Run as non-root, add unzip, xz-utils
|
||||||
# v1.0.2 - Add bzr
|
# v1.0.2 - Add bzr
|
||||||
# v1.0.3 - Verify usign signatures
|
# v1.0.3 - Verify usign signatures
|
||||||
|
# v1.0.4 - Add support for Python3
|
||||||
|
|
||||||
RUN apt update && apt install -y \
|
RUN apt update && apt install -y \
|
||||||
build-essential \
|
build-essential \
|
||||||
|
@ -18,6 +19,7 @@ git \
|
||||||
libncurses5-dev \
|
libncurses5-dev \
|
||||||
libssl-dev \
|
libssl-dev \
|
||||||
python \
|
python \
|
||||||
|
python3 \
|
||||||
signify-openbsd \
|
signify-openbsd \
|
||||||
subversion \
|
subversion \
|
||||||
time \
|
time \
|
||||||
|
|
Loading…
Reference in a new issue