Merge pull request #43 from jkaninda/develop

chore: add build version
This commit is contained in:
2024-11-03 06:48:59 +01:00
committed by GitHub
3 changed files with 38 additions and 1 deletions

View File

@@ -7,7 +7,7 @@ COPY . .
RUN go mod download RUN go mod download
# Build # 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 FROM alpine:3.20.3
ENV TZ=UTC ENV TZ=UTC

View File

@@ -43,5 +43,6 @@ func Execute() {
func init() { func init() {
rootCmd.AddCommand(ServerCmd) rootCmd.AddCommand(ServerCmd)
rootCmd.AddCommand(config.Cmd) rootCmd.AddCommand(config.Cmd)
rootCmd.AddCommand(VersionCmd)
} }

36
cmd/version.go Normal file
View File

@@ -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())
}