File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2828 - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
2929 - uses : actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5
3030 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.
3232 - name : Install Build Dependencies
3333 run : make get-build-deps
3434 - name : Download required modules
Original file line number Diff line number Diff line change 22#
33# docker run --rm -i -e WHO=bitnami bitnami/render-template <<<"hello {{WHO}}"
44#
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
106
117WORKDIR /go/src/app
128COPY . .
@@ -15,8 +11,6 @@ RUN rm -rf out
1511
1612RUN make build
1713
18- RUN upx --ultra-brute out/render-template
19-
2014FROM bitnami/minideb:bookworm
2115
2216COPY --from=build /go/src/app/out/render-template /usr/local/bin/
Original file line number Diff line number Diff line change 11module github.com/bitnami/render-template
22
3- go 1.24
3+ go 1.25
44
55require (
66 github.com/aymerick/raymond v2.0.2+incompatible
You can’t perform that action at this time.
0 commit comments