Skip to content
Snippets Groups Projects
Commit a3425b63 authored by Furkan Ayhan's avatar Furkan Ayhan :two:
Browse files

Add glab in release-cli docker image

We are adding the glab executable in the release-cli image so that
all new release-cli:latest image fetch will include glab
(#194).

This will help our long-term goal of migrating from release-cli to glab
(&15437).

Also, we will be able to continue working on
gitlab#442785.
parent ef03a745
No related branches found
No related tags found
1 merge request!185Add glab in release-cli docker image
......@@ -6,7 +6,10 @@ WORKDIR /release-cli
RUN make build
FROM registry.gitlab.com/gitlab-org/cli:v1.47.0 AS glab-source
FROM alpine:3.18
COPY --from=builder /release-cli/bin/release-cli /usr/local/bin/release-cli
COPY --from=glab-source /usr/bin/glab /usr/local/bin/glab
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment