diff options
Diffstat (limited to 'docker')
-rw-r--r-- | docker/core/Dockerfile | 2 | ||||
-rw-r--r-- | docker/features/Dockerfile | 2 | ||||
-rw-r--r-- | docker/healthcheck/Dockerfile | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/docker/core/Dockerfile b/docker/core/Dockerfile index 273fd4c6..b6f68efe 100644 --- a/docker/core/Dockerfile +++ b/docker/core/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.11.1-alpine3.8 +FROM golang:1.11.6-alpine3.9 ARG BRANCH=stable/hunter ARG OPENSTACK_TAG=stable/rocky diff --git a/docker/features/Dockerfile b/docker/features/Dockerfile index 027526b9..1629cfc5 100644 --- a/docker/features/Dockerfile +++ b/docker/features/Dockerfile @@ -6,7 +6,7 @@ ARG OPNFV_TAG=stable/hunter COPY thirdparty-requirements.txt thirdparty-requirements.txt RUN apk --no-cache add --update make py-pip bash git go \ grep rsync linux-headers musl-dev findutils \ - libffi libssl1.0 libjpeg-turbo && \ + libffi openssl libjpeg-turbo && \ apk --no-cache add --virtual .build-deps --update \ python-dev libffi-dev openssl-dev libjpeg-turbo-dev && \ pip install \ diff --git a/docker/healthcheck/Dockerfile b/docker/healthcheck/Dockerfile index 301bc513..31747abb 100644 --- a/docker/healthcheck/Dockerfile +++ b/docker/healthcheck/Dockerfile @@ -4,7 +4,7 @@ ARG K8S_TAG=v1.13.4 RUN apk --no-cache add --update make py-pip bash git \ grep rsync linux-headers musl-dev findutils \ - libffi libssl1.0 libjpeg-turbo && \ + libffi openssl libjpeg-turbo && \ apk --no-cache add --virtual .build-deps --update \ gcc python-dev libffi-dev openssl-dev libjpeg-turbo-dev && \ git init /src/k8s.io/kubernetes && \ |