diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2021-02-13 20:29:02 +0100 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2021-02-13 20:30:06 +0100 |
commit | c26868a254e8ec6e3a76da65740e25415188f886 (patch) | |
tree | 61728cdf0241def911d261018c3a2e493c807f52 /docker | |
parent | 1b8b7deb1e0b9158c12159ff803adf329d66b4b6 (diff) |
Upgrade system first
Change-Id: I2d1b7816505370aa326e48c5aba3177a3fa844d3
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
(cherry picked from commit c152b35ecff671ea864ea4c55bcc1a7e244c9f73)
Diffstat (limited to 'docker')
-rw-r--r-- | docker/core/Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docker/core/Dockerfile b/docker/core/Dockerfile index baccc03f6..3181f47a1 100644 --- a/docker/core/Dockerfile +++ b/docker/core/Dockerfile @@ -5,7 +5,8 @@ ARG OPENSTACK_TAG=stable/victoria COPY Switch-to-threading.Thread-for-Rally-tasks.patch /tmp/Switch-to-threading.Thread-for-Rally-tasks.patch COPY Create-new-server-in-test_create_backup.patch /tmp/Create-new-server-in-test_create_backup.patch -RUN apk --no-cache add --update \ +RUN apk -U upgrade && \ + apk --no-cache add --update \ python3 py3-wheel libffi openssl libjpeg-turbo py3-pip bash \ grep sed wget ca-certificates git openssh-client qemu-img iputils coreutils mailcap libstdc++ && \ apk --no-cache add --virtual .build-deps --update \ |