chore(deps): update alpine docker tag to v3.22.1
All checks were successful
Deploy / build (pull_request) Successful in 23s

This commit is contained in:
Renovate Bot
2025-07-16 00:07:41 +00:00
parent 23ae2442d4
commit 0579eec8fa

View File

@@ -1,4 +1,4 @@
FROM alpine:3.22.0 AS downloader
FROM alpine:3.22.1 AS downloader
# renovate: datasource=github-releases depName=pocketbase/pocketbase extractVersion=^v(?<version>.*)$
ARG VERSION=0.23.2
@@ -13,7 +13,7 @@ ENV BUILDX_ARCH="${TARGETOS:-linux}_${TARGETARCH:-amd64}${TARGETVARIANT}"
ADD https://github.com/pocketbase/pocketbase/releases/download/v${VERSION}/pocketbase_${VERSION}_${BUILDX_ARCH}.zip /tmp/pb.zip
RUN unzip /tmp/pb.zip -d /pb/
FROM alpine:3.22.0
FROM alpine:3.22.1
RUN apk update && apk add ca-certificates && rm -rf /var/cache/apk/*
EXPOSE 8090