aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2021-02-10 01:24:09 +0100
committerCédric Ollivier <cedric.ollivier@orange.com>2021-02-10 01:24:09 +0100
commit416589195799adc49c5163522313f9e9321c4449 (patch)
tree41ae2134b7641eb526bf3eacb3047d8ec4de4dc5
parent218ff87511f5675386c7c1948d64e24a101091f2 (diff)
Upgrade system first
Change-Id: I9ee2ac74785212f8fa6f4ca84dabfcf0ebd3ed18 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
-rw-r--r--docker/core/Dockerfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/docker/core/Dockerfile b/docker/core/Dockerfile
index 2a57421e..70b194b8 100644
--- a/docker/core/Dockerfile
+++ b/docker/core/Dockerfile
@@ -3,7 +3,8 @@ FROM alpine:3.13
ARG BRANCH=master
ARG OPENSTACK_TAG=master
-RUN apk --no-cache add --update python3 py3-pip py3-wheel bash git mailcap libxml2 libxslt && \
+RUN apk -U upgrade && \
+ 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" \