Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.DEFAULT_GOAL := fast-build
VERSION := dev-$(shell git rev-parse HEAD | cut -c 1-8)

# Cross-compilation via Docker (golang:1.24 native Linux container).
# Cross-compilation via Docker (golang:1.25 native Linux container).
# When arch=<GOOS>/<GOARCH> is provided, spin up a container that matches
# the target platform so CGO uses the native Linux gcc/GNU ld toolchain
_GOMODCACHE := $(shell go env GOMODCACHE)
Expand All @@ -16,7 +16,7 @@ ifdef arch
-e GOPRIVATE=github.com/brevdev/* \
-e GONOSUMDB=github.com/brevdev/* \
-w /app \
golang:1.24
golang:1.25
else
_BUILD_PREFIX := CGO_ENABLED=1
endif
Expand Down
2 changes: 1 addition & 1 deletion pkg/cmd/util/externalnode.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ func ResolveNodeSSHEntry(userID string, node *nodev1.ExternalNode) *ssh.External
return &ssh.ExternalNodeSSHEntry{
Alias: ssh.SanitizeNodeName(node.GetName()),
Hostname: sshPort.GetHostname(),
Port: sshPort.GetServerPort(),
Port: sshPort.GetPortNumber(),
User: linuxUser,
}
}
Expand Down
Loading