diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d46ac4..c83b578 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 6.4.9 2024-01-23 + + ### Changed + - Restore Alpine Edge builds + + ## 6.4.8 2024-01-23 ### Added diff --git a/Dockerfile b/Dockerfile index 814023f..50f2ee5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ ENV NGINX_VERSION=${NGINX_VERSION:-"1.25.3"} \ RUN case "$(cat /etc/os-release | grep VERSION_ID | cut -d = -f 2 | cut -d . -f 1,2 | cut -d _ -f 1)" in \ 3.5 | 3.6 | 3.7 | 3.8 | 3.9 | 3.10 | 3.11 | 3.12 | 3.13 | 3.14 | 3.15 | 3.16 ) alpine_ssl=libressl ;; \ - 3.17* | 3.18* | 3.19* ) alpine_ssl=openssl ;; \ + 3.17* | 3.18* | 3.19* | 3.20* ) alpine_ssl=openssl ;; \ *) : ;; \ esac ; \ source /assets/functions/00-container && \