aboutsummaryrefslogtreecommitdiffstats
path: root/docker
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2020-08-05 17:08:14 +0200
committerCédric Ollivier <cedric.ollivier@orange.com>2020-08-05 17:08:14 +0200
commit405b78d76931e374a15ed7573b91b93522f51f28 (patch)
tree01e8cccb7195eebc1136acd86653b19ba8a37fbf /docker
parente7b74848907bbc09fd1010fa6cca2c6eac690494 (diff)
Install py3-wheel in xtesting
It fixes all deprecated warnings. Change-Id: Ide9b140e56555fba3b5bc94c71df15d4627b72cd Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'docker')
-rw-r--r--docker/core/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/core/Dockerfile b/docker/core/Dockerfile
index 2e1fbb00..738a0403 100644
--- a/docker/core/Dockerfile
+++ b/docker/core/Dockerfile
@@ -3,7 +3,7 @@ FROM alpine:3.12
ARG BRANCH=master
ARG OPENSTACK_TAG=master
-RUN apk --no-cache add --update python3 py3-pip bash git mailcap libxml2 libxslt && \
+RUN apk --no-cache add --update python3 py3-pip py3-wheel bash git mailcap libxml2 libxslt && \
apk --no-cache add --virtual .build-deps --update \
python3-dev build-base libxml2-dev libxslt-dev && \
case $(uname -m) in aarch*|arm*) CFLAGS="-O0" \