1
Fork 0

Merge pull request 'chore(deps): update alpine docker tag' (#124) from renovate/alpine-3.x into master

Reviewed-on: #124
This commit is contained in:
Lucas Schwiderski 2024-12-06 10:03:51 +00:00
commit ebe7f743b0
Signed by: Forgejo (git.sclu1034.dev)
GPG key ID: B1C9C29730D3D366
2 changed files with 2 additions and 2 deletions

View file

@ -7,7 +7,7 @@ ARG FRP_VERSION
ADD https://github.com/fatedier/frp/releases/download/v${FRP_VERSION}/frp_${FRP_VERSION}_linux_amd64.tar.gz /frp.tar.gz ADD https://github.com/fatedier/frp/releases/download/v${FRP_VERSION}/frp_${FRP_VERSION}_linux_amd64.tar.gz /frp.tar.gz
FROM alpine:3.20 FROM alpine:3.21
ARG FRP_VERSION ARG FRP_VERSION

View file

@ -13,7 +13,7 @@ RUN --mount=type=cache,id=cargo-registry,target=/usr/local/cargo/registry \
# need to copy the binary to a persistent place. # need to copy the binary to a persistent place.
cp target/release/gitea /app/gitea; cp target/release/gitea /app/gitea;
FROM alpine:3.20.3 AS final FROM alpine:3.21.0 AS final
RUN apk add --no-cache ca-certificates; RUN apk add --no-cache ca-certificates;