File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed
Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -9,12 +9,6 @@ shared_configs:
99# Use the latest 2.1 version of CircleCI pipeline process engine. See: https://circleci.com/docs/2.0/configuration-reference
1010version : 2.1
1111jobs :
12- build-1-22 :
13- working_directory : ~/repo
14- docker :
15- - image : cimg/go:1.22
16- steps : *simple_job_steps
17-
1812 build-1-23 :
1913 working_directory : ~/repo
2014 docker :
2519 working_directory : ~/repo
2620 docker :
2721 - image : cimg/go:1.24
22+ steps : *simple_job_steps
23+
24+ build-1-25 :
25+ working_directory : ~/repo
26+ docker :
27+ - image : cimg/go:1.25
2828 steps :
2929 - checkout
3030 - run :
3535workflows :
3636 pr-build-test :
3737 jobs :
38- - build-1-22
3938 - build-1-23
4039 - build-1-24
40+ - build-1-25
Original file line number Diff line number Diff line change 1- FROM golang:1.23 -alpine as builder
2- MAINTAINER Fullstory Engineering
1+ FROM golang:1.25 -alpine AS builder
2+ LABEL maintainer= " Fullstory Engineering"
33
44# create non-privileged group and user
55RUN addgroup -S grpcurl && adduser -S grpcurl -G grpcurl
@@ -16,7 +16,7 @@ RUN go build -o /grpcurl \
1616 -ldflags "-w -extldflags \" -static\" -X \" main.version=$(cat VERSION)\" " \
1717 ./cmd/grpcurl
1818
19- FROM alpine:3 as alpine
19+ FROM alpine:3 AS alpine
2020WORKDIR /
2121COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
2222COPY --from=builder /etc/passwd /etc/passwd
You can’t perform that action at this time.
0 commit comments