From d2a0129ba88a5bcfa599189c59363a70660ab932 Mon Sep 17 00:00:00 2001 From: Gabriel PASCUAL Date: Sat, 20 Feb 2021 16:51:01 +0100 Subject: [PATCH] Bump alpine version to v3.13 (latest) --- README.md | 4 ++-- dockerfile_functions.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index fb1f9a62..5b453101 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Dockerfiles and build scripts for generating Docker Images based on various Adop | Alpine | centos | clefos | debian | debianslim | leap | tumbleweed | ubi | ubi-minimal | ubuntu(*) | |:------:|:------:|:------:|:------:|:------------:|:----:|:----------:|:---:|:-----------:|:------:| -| 3.12 | 7 | 7 | buster | buster-slim | 15.2 | latest | 8.2 | 8.2 | 20.04 | +| 3.13 | 7 | 7 | buster | buster-slim | 15.2 | latest | 8.2 | 8.2 | 20.04 | Note: Hotspot is not supported on Ubuntu 20.04 for s390x arch. @@ -30,7 +30,7 @@ AdoptOpenJDK Docker Images are available as both Official Images (Maintained by - Windows Server Core (ltsc2016 and 1809): Release * [Unofficial Images](https://hub.docker.com/u/adoptopenjdk) are maintained by AdoptOpenJDK and updated on a nightly basis. Supported OSes and their versions and type of images are as below. - Linux - - Alpine (3.12): Release, Nightly and Slim + - Alpine (3.13): Release, Nightly and Slim - CentOS (7): Release, Nightly and Slim - ClefOS (7): Release, Nightly and Slim - Debian (Buster): Release, Nightly and Slim diff --git a/dockerfile_functions.sh b/dockerfile_functions.sh index f05b71de..28f508a4 100755 --- a/dockerfile_functions.sh +++ b/dockerfile_functions.sh @@ -153,7 +153,7 @@ EOI # Print the supported Alpine OS print_alpine_ver() { cat >> "$1" <<-EOI - FROM alpine:3.12 + FROM alpine:3.13 EOI }