Skip to content

Commit

Permalink
use alpine 3.12 everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
Pascal Bourdier committed Jun 3, 2020
1 parent 38c583b commit 8477bba
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.amd64
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.11
FROM alpine:3.12

LABEL maintainer="Tom Denham <tom@tigera.io>"

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.arm
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM arm32v6/alpine
FROM arm32v6/alpine:3.12

LABEL maintainer="Tom Denham <tom@tigera.io>"

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.arm64
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM arm64v8/alpine
FROM arm64v8/alpine:3.12

LABEL maintainer="Tom Denham <tom@tigera.io>"

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.ppc64le
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ppc64le/alpine
FROM ppc64le/alpine:3.12

LABEL maintainer="Tom Denham <tom@tigera.io>"

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.s390x
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM s390x/alpine
FROM s390x/alpine:3.12

LABEL maintainer="Tom Denham <tom@tigera.io>"

Expand Down
6 changes: 3 additions & 3 deletions images/iperf3/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8477bba

Please sign in to comment.