File tree Expand file tree Collapse file tree 6 files changed +794
-925
lines changed Expand file tree Collapse file tree 6 files changed +794
-925
lines changed Original file line number Diff line number Diff line change 1
- FROM golang:1.21.6 -alpine3.19 as base
1
+ FROM golang:1.22.5 -alpine3.20 as base
2
2
3
3
WORKDIR /go/src/github.com/codefresh-io/cli-v2
4
4
@@ -27,7 +27,7 @@ RUN go mod verify
27
27
28
28
# ############################## CLI ###############################
29
29
# ## Compile
30
- FROM golang:1.21.6 -alpine3.19 as codefresh-build
30
+ FROM golang:1.22.5 -alpine3.20 as codefresh-build
31
31
32
32
WORKDIR /go/src/github.com/codefresh-io/cli-v2
33
33
@@ -45,7 +45,7 @@ ARG SEGMENT_WRITE_KEY
45
45
RUN make local DEV_MODE=false SEGMENT_WRITE_KEY=${SEGMENT_WRITE_KEY}
46
46
47
47
# ## Run
48
- FROM alpine:3.19 as codefresh
48
+ FROM alpine:3.20 as codefresh
49
49
50
50
WORKDIR /go/src/github.com/codefresh-io/cli-v2
51
51
Original file line number Diff line number Diff line change 1
- VERSION =v0.1.63
1
+ VERSION =v0.1.64
2
2
3
3
OUT_DIR =dist
4
4
YEAR? =$(shell date +"% Y")
Original file line number Diff line number Diff line change 1
- FROM golang:1.21.4-alpine3.18
1
+ # docker buildx build --platform linux/amd64,linux/arm64 -t quay.io/codefresh/golang-ci-helper:1.21.12 -f Dockerfile.helper .
2
+ FROM golang:1.22.5-alpine3.20
2
3
3
4
RUN apk -U add --no-cache \
4
5
bash \
@@ -12,14 +13,14 @@ RUN apk -U add --no-cache \
12
13
openssl \
13
14
&& update-ca-certificates
14
15
15
- ARG GH_VERSION=2.38 .0
16
+ ARG GH_VERSION=2.52 .0
16
17
RUN curl -L https://github.com/cli/cli/releases/download/v${GH_VERSION}/gh_${GH_VERSION}_linux_amd64.tar.gz --output gh.tar.gz \
17
18
&& tar -xzf gh.tar.gz \
18
19
&& mv gh_${GH_VERSION}_linux_amd64/bin/gh /usr/local/bin \
19
20
&& rm gh.tar.gz \
20
21
&& rm -rf gh_${GH_VERSION}_linux_amd64
21
22
22
- ARG KUSTOMIZE_VERSION=5.2.1
23
+ ARG KUSTOMIZE_VERSION=5.4.2
23
24
RUN curl -Ls https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize%2Fv${KUSTOMIZE_VERSION}/kustomize_v${KUSTOMIZE_VERSION}_linux_amd64.tar.gz --output kustomize.tar.gz \
24
25
&& tar -xzf kustomize.tar.gz \
25
26
&& mv ./kustomize /usr/bin \
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments