From dd9df95311b3d4bf81ffb16486b5facca7be49a6 Mon Sep 17 00:00:00 2001 From: Jonas Kaninda Date: Sun, 3 Nov 2024 06:27:31 +0100 Subject: [PATCH] chore: add build version --- Dockerfile | 2 +- cmd/root.go | 1 + cmd/version.go | 36 ++++++++++++++++++++++++++++++++++++ 3 files changed, 38 insertions(+), 1 deletion(-) create mode 100644 cmd/version.go diff --git a/Dockerfile b/Dockerfile index 27f472d..3684caa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ COPY . . RUN go mod download # Build -RUN CGO_ENABLED=0 GOOS=linux go build -ldflags="-X 'util.Version=${appVersion}'" -o /app/goma +RUN CGO_ENABLED=0 GOOS=linux go build -ldflags="-X 'github.com/jkaninda/goma-gateway/util.Version=${appVersion}'" -o /app/goma FROM alpine:3.20.3 ENV TZ=UTC diff --git a/cmd/root.go b/cmd/root.go index ebd621b..166873c 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -43,5 +43,6 @@ func Execute() { func init() { rootCmd.AddCommand(ServerCmd) rootCmd.AddCommand(config.Cmd) + rootCmd.AddCommand(VersionCmd) } diff --git a/cmd/version.go b/cmd/version.go new file mode 100644 index 0000000..99a1f96 --- /dev/null +++ b/cmd/version.go @@ -0,0 +1,36 @@ +/* + * Copyright 2024 Jonas Kaninda + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +package cmd + +import ( + "fmt" + "github.com/jkaninda/goma-gateway/util" + "github.com/spf13/cobra" +) + +var VersionCmd = &cobra.Command{ + Use: "version", + Short: "Print the version number", + Run: func(cmd *cobra.Command, args []string) { + version() + }, +} + +func version() { + fmt.Println("Version:\t", util.FullVersion()) +}