You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for raising the issue @Rahulbeniwal26119 . propeller expects go 1.23 and that's the right version to use. The build stage uses the right golang image. For the binary execution stage, a golang image is not necessarily required. The binary built could very well run with a vanilla alpine image. Would you like to fix that?
I noticed that Dockerfile uses different Go versions for the build and binary stages:
Stage 1 - build stage
######################################
FROM golang:1.23.3 as builder
Stage 2 - Binary stage
######################################
FROM golang:1.21.13
Can anyone please share some insights on whether this is an intended change? As per my understanding, we should keep the same version for both.
Thanks.
The text was updated successfully, but these errors were encountered: