Parcourir la source

Merge pull request #1290 from PascalBourdier/CVE-2019-14697

fix CVE-2019-14697
Rajat Chopra il y a 4 ans
Parent
commit
6cd8b162fc
6 fichiers modifiés avec 8 ajouts et 8 suppressions
  1. 1 1
      Dockerfile.amd64
  2. 1 1
      Dockerfile.arm
  3. 1 1
      Dockerfile.arm64
  4. 1 1
      Dockerfile.ppc64le
  5. 1 1
      Dockerfile.s390x
  6. 3 3
      images/iperf3/Makefile

+ 1 - 1
Dockerfile.amd64

@@ -1,4 +1,4 @@
-FROM alpine
+FROM alpine:3.12
 
 LABEL maintainer="Tom Denham <tom@tigera.io>"
 

+ 1 - 1
Dockerfile.arm

@@ -1,4 +1,4 @@
-FROM arm32v6/alpine
+FROM arm32v6/alpine:3.12
 
 LABEL maintainer="Tom Denham <tom@tigera.io>"
 

+ 1 - 1
Dockerfile.arm64

@@ -1,4 +1,4 @@
-FROM arm64v8/alpine
+FROM arm64v8/alpine:3.12
 
 LABEL maintainer="Tom Denham <tom@tigera.io>"
 

+ 1 - 1
Dockerfile.ppc64le

@@ -1,4 +1,4 @@
-FROM ppc64le/alpine
+FROM ppc64le/alpine:3.12
 
 LABEL maintainer="Tom Denham <tom@tigera.io>"
 

+ 1 - 1
Dockerfile.s390x

@@ -1,4 +1,4 @@
-FROM s390x/alpine
+FROM s390x/alpine:3.12
 
 LABEL maintainer="Tom Denham <tom@tigera.io>"
 

+ 3 - 3
images/iperf3/Makefile

@@ -5,13 +5,13 @@ ARCH ?= amd64
 TEMP_DIR := $(shell mktemp -d)
 
 ifeq ($(ARCH),amd64)
-        BASEIMAGE=alpine:3.6
+        BASEIMAGE=alpine:3.12
 endif
 ifeq ($(ARCH),arm64)
-	BASEIMAGE=aarch64/alpine:3.6
+	BASEIMAGE=aarch64/alpine:3.12
 endif
 ifeq ($(ARCH),ppc64le)
-	BASEIMAGE=ppc64le/alpine:3.6
+	BASEIMAGE=ppc64le/alpine:3.12
 endif
 
 all: container