Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#syntax=docker/dockerfile:1.2
FROM --platform=$BUILDPLATFORM alpine:3.21.3 as builder
FROM --platform=$BUILDPLATFORM alpine:3.21.5 as builder

ARG TARGETPLATFORM
ARG BUILDPLATFORM
Expand All @@ -12,7 +12,7 @@ RUN export RELEASE_LOCATION="${GH_VERSION}_$(echo "${BUILDPLATFORM//\//_}")" &&
chmod +x gh_${RELEASE_LOCATION}/bin/gh && \
rsync -az --remove-source-files gh_${RELEASE_LOCATION}/bin/ /usr/bin

FROM alpine:3.21.3 as gh
FROM alpine:3.21.5 as gh

RUN apk add --no-cache git libc6-compat
COPY --from=builder /usr/bin/gh /usr/bin/
Expand Down
Loading