Skip to content

Commit

Permalink
Merge pull request #443 from scorpioborn/fix/proto-dockerfile-version
Browse files Browse the repository at this point in the history
Fix / Proto dockerfile and makefile v1.23
  • Loading branch information
scorpioborn authored Nov 21, 2024
2 parents b1ced16 + 793e50c commit 1db0d48
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ endif
###############################################################################

check_version:
ifneq ($(GO_MINOR_VERSION),23)
@echo "ERROR: Go version 1.23 is required for this version of SGE."
ifeq ($(shell expr $(GO_MINOR_VERSION) \< 23), 1)
@echo "ERROR: Go version 1.23+ is required for this version of SGE."
exit 1
endif

Expand Down
3 changes: 1 addition & 2 deletions proto/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@

FROM bufbuild/buf:1.9.0 as BUILDER

FROM golang:1.23-alpine3.18

FROM golang:1.23-alpine3.20

RUN apk add --no-cache \
nodejs \
Expand Down

0 comments on commit 1db0d48

Please sign in to comment.