Skip to content

Commit 6caf0e7

Browse files
authored
update lead version to Go 1.25 (#543)
1 parent 1ad1dc1 commit 6caf0e7

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.circleci/config.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff 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
1010
version: 2.1
1111
jobs:
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:
@@ -25,6 +19,12 @@ jobs:
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:
@@ -35,6 +35,6 @@ jobs:
3535
workflows:
3636
pr-build-test:
3737
jobs:
38-
- build-1-22
3938
- build-1-23
4039
- build-1-24
40+
- build-1-25

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
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
55
RUN 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
2020
WORKDIR /
2121
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
2222
COPY --from=builder /etc/passwd /etc/passwd

0 commit comments

Comments
 (0)