diff options
-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 999049c3..03d6fe85 100644 --- a/docker/core/Dockerfile +++ b/docker/core/Dockerfile @@ -3,7 +3,8 @@ FROM alpine:3.11 ARG BRANCH=stable/kali ARG OPENSTACK_TAG=stable/ussuri -RUN apk --no-cache add --update python3 bash git mailcap libxml2 libxslt && \ +RUN apk -U upgrade && \ + apk --no-cache add --update python3 bash git mailcap libxml2 libxslt && \ apk --no-cache add --virtual .build-deps --update \ python3-dev build-base libxml2-dev libxslt-dev && \ git init /src/functest-xtesting && \ |