diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2021-02-10 11:43:34 +0100 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2021-02-10 11:45:01 +0100 |
commit | 368312b0c05a816d9c93e3e4d0f85ccc84b6841d (patch) | |
tree | b0b9027e4c81142c45e2ae812e4786b5af0f8477 /docker/core | |
parent | b89614a897ef91046ca85174f41cc91a953a99d9 (diff) |
Upgrade system first
Change-Id: I0120e6a368b033f2fb47257ff9dcc3fd8a58d243
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
(cherry picked from commit 9ebe47c8458c99066fd71a65007fff923004d209)
Diffstat (limited to 'docker/core')
-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 a6026e34..045826c0 100644 --- a/docker/core/Dockerfile +++ b/docker/core/Dockerfile @@ -7,7 +7,8 @@ ARG OPNFV_TAG=stable/leguer 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 COPY Allow-offline-testing-in-PodWithClusterIPSvc.patch /tmp/Allow-offline-testing-in-PodWithClusterIPSvc.patch -RUN apk --no-cache add --update python3 py3-pip py3-wheel bash git grep libffi openssl mailcap && \ +RUN apk -U upgrade && \ + apk --no-cache add --update python3 py3-pip py3-wheel bash git grep libffi openssl mailcap && \ apk --no-cache add --virtual .build-deps --update \ python3-dev build-base libffi-dev openssl-dev && \ git init /src/requirements && \ |