From 747bc80e9faad6dd2473bf9264f8846f12a5caa5 Mon Sep 17 00:00:00 2001 From: Fabian Peter Hammerle Date: Sun, 10 Dec 2023 10:34:03 +0100 Subject: [PATCH] upgrade alpine base image from v3.18.5 to v3.19.0 including upgrade of nftables package from v1.0.7-r2 to v1.0.9-r0 https://www.netfilter.org/projects/nftables/files/changes-nftables-1.0.8.txt https://www.netfilter.org/projects/nftables/files/changes-nftables-1.0.9.txt https://git.alpinelinux.org/aports/commit/main/nftables?h=3.19-stable&id=fd5766ba2ab2543db15da4da8c4e9cded3360c53 https://git.alpinelinux.org/aports/commit/main/nftables?h=3.19-stable&id=e4b1a4d9d7ac4ee3a3f17014822d1f04628ef85b https://git.alpinelinux.org/aports/commit/main/nftables?h=3.19-stable&id=fed26cb955a163315a8c657ae44812011b8f0693 https://git.alpinelinux.org/aports/commit/main/nftables?h=3.19-stable&id=90bf73935d51b4c65fcf16bf8946b35e64eb7b59 --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 112e3d0..2d00d89 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,13 @@ -FROM docker.io/alpine:3.18.5 +FROM docker.io/alpine:3.19.0 # https://gitweb.torproject.org/tor.git/plain/ChangeLog # https://gitlab.torproject.org/tpo/core/tor/-/raw/release-0.4.8/ReleaseNotes # https://git.alpinelinux.org/aports/log/community/tor?h=3.18-stable ARG TOR_PACKAGE_VERSION=0.4.8.10-r0 # nftables + dependencies add 2.3MB to image -ARG NFTABLES_PACKAGE_VERSION=1.0.7-r2 +# https://www.netfilter.org/projects/nftables/downloads.html +# https://git.alpinelinux.org/aports/log/main/nftables?h=3.19-stable +ARG NFTABLES_PACKAGE_VERSION=1.0.9-r0 RUN apk add --no-cache \ nftables=$NFTABLES_PACKAGE_VERSION \ tor=$TOR_PACKAGE_VERSION