File tree Expand file tree Collapse file tree 3 files changed +3
-9
lines changed Expand file tree Collapse file tree 3 files changed +3
-9
lines changed Original file line number Diff line number Diff line change 28
28
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
29
29
- uses : actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5
30
30
with :
31
- go-version : ' ^1.24.4 ' # The Go version to download (if necessary) and use.
31
+ go-version : ' ^1.25 ' # The Go version to download (if necessary) and use.
32
32
- name : Install Build Dependencies
33
33
run : make get-build-deps
34
34
- name : Download required modules
Original file line number Diff line number Diff line change 2
2
#
3
3
# docker run --rm -it --net host bitnami/wait-for-port
4
4
#
5
- FROM golang:1.24-bookworm as build
6
-
7
- RUN apt-get update && apt-get install -y --no-install-recommends \
8
- git make upx \
9
- && rm -rf /var/lib/apt/lists/*
5
+ FROM bitnami/golang:1.25 as build
10
6
11
7
WORKDIR /go/src/app
12
8
COPY . .
@@ -15,8 +11,6 @@ RUN rm -rf out
15
11
16
12
RUN make
17
13
18
- RUN upx --ultra-brute out/wait-for-port
19
-
20
14
FROM bitnami/minideb:bookworm
21
15
22
16
COPY --from=build /go/src/app/out/wait-for-port /usr/local/bin/
Original file line number Diff line number Diff line change 1
1
module github.com/bitnami/wait-for-port
2
2
3
- go 1.24
3
+ go 1.25
4
4
5
5
require (
6
6
github.com/jessevdk/go-flags v1.6.1
You can’t perform that action at this time.
0 commit comments