Dockerfile: bump Alpine from 3.22 to 3.23

Signed-off-by: Nicola Murino <nicola.murino@gmail.com>
This commit is contained in:
Nicola Murino 2025-12-11 08:39:30 +01:00
commit decdb187cf
No known key found for this signature in database
GPG key ID: 935D2952DEC4EECF

View file

@ -1,4 +1,4 @@
FROM golang:1.25-alpine3.22 AS builder
FROM golang:1.25-alpine3.23 AS builder
ENV GOFLAGS="-mod=readonly"
@ -25,7 +25,7 @@ RUN set -xe && \
export COMMIT_SHA=${COMMIT_SHA:-$(git describe --always --abbrev=8 --dirty)} && \
go build $(if [ -n "${FEATURES}" ]; then echo "-tags ${FEATURES}"; fi) -trimpath -ldflags "-s -w -X github.com/drakkan/sftpgo/v2/internal/version.commit=${COMMIT_SHA} -X github.com/drakkan/sftpgo/v2/internal/version.date=`date -u +%FT%TZ`" -v -o sftpgo
FROM alpine:3.22
FROM alpine:3.23
# Set to "true" to install jq
ARG INSTALL_OPTIONAL_PACKAGES=false