Skip to content

Commit

Permalink
fix: proto dockerfile and makefile v1.23
Browse files Browse the repository at this point in the history
  • Loading branch information
scorpioborn committed Nov 6, 2024
1 parent 4ddf6c9 commit 793e50c
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 793e50c

Please sign in to comment.