upgrade to go 1.16.3

This commit is contained in:
Rui Lopes 2021-04-26 06:14:12 +01:00
parent 793b4e458d
commit 92489ef7ad
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ module example.com/go-hello
go 1.16
EOF
cat >Dockerfile <<'EOF'
FROM golang:1.16.0-buster as builder
FROM golang:1.16.3-buster as builder
WORKDIR /app
COPY go.* main.go ./
RUN CGO_ENABLED=0 go build -ldflags="-s"