From 1d9f8f03a4dd114484b2aa207e0e24b8816315a7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Feb 2026 04:12:07 +0000 Subject: [PATCH] Bump alpine from 3.23.2 to 3.23.3 Bumps alpine from 3.23.2 to 3.23.3. --- updated-dependencies: - dependency-name: alpine dependency-version: 3.23.3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f8af7cf..e4bddf3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.23.2 AS build +FROM alpine:3.23.3 AS build RUN apk add --no-cache \ bash \ git \ @@ -10,7 +10,7 @@ RUN cd librespeed-cli && \ ./build.sh && \ mv out/librespeed-cli-$(go env GOOS)-$(go env GOARCH) /usr/local/bin/librespeed-cli -FROM alpine:3.23.2 AS runtime +FROM alpine:3.23.3 AS runtime COPY --from=build /usr/local/bin/librespeed-cli /usr/local/bin/librespeed-cli CMD ["/usr/local/bin/librespeed-cli"]