Skip to content

Commit ce4b61f

Browse files
committed
update Dockerfile and circleci config
1 parent f157cfc commit ce4b61f

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.circleci/config.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ workflows:
126126
jobs:
127127
- lint:
128128
go-version: "1.11.4"
129-
golangci-lint-version: "1.15.0"
129+
golangci-lint-version: "1.17.1"
130130
- build:
131131
go-version: "1.11.4"
132132
requires:
@@ -135,10 +135,10 @@ workflows:
135135
latest-build:
136136
jobs:
137137
- lint:
138-
go-version: "1.12.1"
139-
golangci-lint-version: "1.15.0"
138+
go-version: "1.12.8"
139+
golangci-lint-version: "1.17.1"
140140
- build:
141-
go-version: "1.12.1"
141+
go-version: "1.12.8"
142142
requires:
143143
- lint
144144

@@ -154,7 +154,7 @@ workflows:
154154
jobs:
155155
- lint:
156156
go-version: "1.11.4"
157-
golangci-lint-version: "1.15.0"
157+
golangci-lint-version: "1.17.1"
158158
- release:
159159
go-version: "1.11.4"
160160
filters:

Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# build docui
2-
FROM golang:1.11.5 AS build-docui
2+
FROM golang:1.12.8 AS build-docui
33
ENV GOPATH /go
44
ENV GOOS linux
55
ENV GOARCH amd64
66
ENV CGO_ENABLED 0
77
ENV GO111MODULE on
8+
ENV TERM xterm-256color
89
COPY . ./src/github.com/skanehira/docui
910
WORKDIR /go/src/github.com/skanehira/docui
1011
RUN go build

0 commit comments

Comments
 (0)