-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update golang to 1.22.4, update alpine to 3.20.0, update bullseye ima…
…ges to bookworm images --------- Co-authored-by: Marco Nelles <marco.nelles@netapp.com>
- Loading branch information
1 parent
1003fff
commit 23c4edd
Showing
9 changed files
with
21 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
FROM golang:1.22.3 as build | ||
FROM golang:1.22.4 as build | ||
|
||
ARG TOUCH_PROTOS | ||
COPY . /src/vali | ||
WORKDIR /src/vali | ||
RUN make clean && make BUILD_IN_CONTAINER=false vali-querytee | ||
|
||
FROM alpine:3.19 | ||
FROM alpine:3.20.0 | ||
RUN apk add --update --no-cache ca-certificates | ||
COPY --from=build /src/vali/cmd/querytee/vali-querytee /usr/bin/querytee | ||
ENTRYPOINT [ "/usr/bin/querytee" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
FROM golang:1.22.3 as build | ||
FROM golang:1.22.4 as build | ||
# TOUCH_PROTOS signifies if we should touch the compiled proto files and thus not regenerate them. | ||
# This is helpful when file system timestamps can't be trusted with make | ||
ARG TOUCH_PROTOS | ||
COPY . /src/vali | ||
WORKDIR /src/vali | ||
RUN make clean && (if [ "${TOUCH_PROTOS}" ]; then make touch-protos; fi) && make BUILD_IN_CONTAINER=false vali-canary | ||
|
||
FROM alpine:3.19 | ||
FROM alpine:3.20.0 | ||
RUN apk add --update --no-cache ca-certificates | ||
COPY --from=build /src/vali/cmd/vali-canary/vali-canary /usr/bin/vali-canary | ||
ENTRYPOINT [ "/usr/bin/vali-canary" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters