Skip to content

Commit 8c0a6ba

Browse files
authored
Revert base image in the Dockerfile (#4)
golang:alpine => golang:latest
1 parent fa40b50 commit 8c0a6ba

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:alpine AS build
1+
FROM golang:latest AS build
22

33
WORKDIR /gowork
44

internal/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
)
1111

1212
// VERSION the current program version info
13-
const VERSION = "v0.1.0"
13+
const VERSION = "v0.1.1"
1414

1515
// Commit the commit file records the last commit hash value, used by release
1616
//

scripts/build-docker.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# git pull --no-rebase
1111

1212
# update the latest golang image
13-
docker pull golang:alpine
13+
docker pull golang:latest
1414

1515
# set GOPROXY environment variable
1616
# GOPROXY=https://goproxy.cn

0 commit comments

Comments
 (0)