We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa40b50 commit 8c0a6baCopy full SHA for 8c0a6ba
3 files changed
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM golang:alpine AS build
+FROM golang:latest AS build
2
3
WORKDIR /gowork
4
internal/version/version.go
@@ -10,7 +10,7 @@ import (
10
)
11
12
// VERSION the current program version info
13
-const VERSION = "v0.1.0"
+const VERSION = "v0.1.1"
14
15
// Commit the commit file records the last commit hash value, used by release
16
//
scripts/build-docker.sh
@@ -10,7 +10,7 @@
# git pull --no-rebase
# update the latest golang image
-docker pull golang:alpine
+docker pull golang:latest
# set GOPROXY environment variable
# GOPROXY=https://goproxy.cn
0 commit comments