diff options
Diffstat (limited to 'docker')
-rw-r--r-- | docker/core/Dockerfile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/docker/core/Dockerfile b/docker/core/Dockerfile index 8f6ecd0f..df14f359 100644 --- a/docker/core/Dockerfile +++ b/docker/core/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.14 +FROM alpine:3.15 ARG BRANCH=stable/v1.24 ARG OPENSTACK_TAG=stable/yoga @@ -7,9 +7,10 @@ ARG OPNFV_TAG=stable/yoga COPY Try-a-quick-fix-vs-asynchronuous-issues.patch /tmp/Try-a-quick-fix-vs-asynchronuous-issues.patch COPY Switch-to-threading.Thread-for-Rally-tasks.patch /tmp/Switch-to-threading.Thread-for-Rally-tasks.patch RUN apk -U upgrade && \ - apk --no-cache add --update python3 py3-pip py3-wheel bash git grep libffi openssl mailcap && \ + apk --no-cache add --update python3 py3-pip py3-wheel bash git grep libffi openssl mailcap \ + libxml2 libxslt && \ apk --no-cache add --virtual .build-deps --update \ - python3-dev build-base libffi-dev openssl-dev rust cargo && \ + python3-dev build-base libffi-dev openssl-dev rust cargo libxml2-dev libxslt-dev && \ git init /src/requirements && \ (cd /src/requirements && \ git fetch --tags https://review.opendev.org/openstack/requirements $OPENSTACK_TAG && \ |