Compare commits

..

4 Commits

Author SHA1 Message Date
ba51c6dc53 Merge pull request 'chore(deps): update alpine docker tag to v3.23.0' (#17) from renovate/alpine-3.x into main
All checks were successful
Deploy / build (push) Successful in 23s
Reviewed-on: #17
2025-12-11 10:57:26 +13:00
6c47484802 Merge pull request 'chore(deps): update actions/checkout action to v6' (#18) from renovate/actions-checkout-6.x into main
Some checks failed
Deploy / build (push) Has been cancelled
Reviewed-on: #18
2025-12-11 10:57:15 +13:00
Renovate Bot
e45ead4b86 chore(deps): update alpine docker tag to v3.23.0
Some checks failed
Deploy / build (pull_request) Failing after 1s
2025-12-05 12:11:15 +00:00
Renovate Bot
d2583f3ee8 chore(deps): update actions/checkout action to v6
Some checks failed
Deploy / build (pull_request) Failing after 0s
2025-11-22 18:10:14 +00:00
2 changed files with 3 additions and 3 deletions

View File

@@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
container: catthehacker/ubuntu:act-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Login to Docker registry
uses: docker/login-action@v3

View File

@@ -1,4 +1,4 @@
FROM alpine:3.22.1 AS downloader
FROM alpine:3.23.0 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.1
FROM alpine:3.23.0
RUN apk update && apk add ca-certificates && rm -rf /var/cache/apk/*
EXPOSE 8090