Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/license-test/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM golang:1
FROM golang:1.16

WORKDIR /app

COPY license-config.hcl .
ARG GOPROXY="https://proxy.golang.org,direct"
RUN GO111MODULE=on go get github.com/mitchellh/golicense
RUN GO111MODULE=on go install github.com/mitchellh/golicense@v0.2.0

CMD $GOPATH/bin/golicense
2 changes: 1 addition & 1 deletion test/license-test/gen-license-report.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ mkdir -p $BUILD_DIR
GOBIN=$(go env GOPATH | sed 's+:+/bin+g')/bin
export PATH="$PATH:$GOBIN"

go get github.com/mitchellh/golicense
go install github.com/mitchellh/golicense@v0.2.0
go build -o $BUILD_DIR/nth $SCRIPTPATH/../../.
golicense -out-xlsx=$BUILD_DIR/report.xlsx $SCRIPTPATH/license-config.hcl $BUILD_DIR/nth

4 changes: 2 additions & 2 deletions test/readme-test/spellcheck-Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM golang:1
FROM golang:1.16

RUN go get -u github.com/client9/misspell/cmd/misspell
RUN go install github.com/client9/misspell/cmd/misspell@v0.3.4

CMD [ "/go/bin/misspell" ]
2 changes: 1 addition & 1 deletion test/webhook-test-proxy/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the manager binary
FROM golang:1-alpine as builder
FROM golang:1.16-alpine as builder

## GOLANG env
ARG GOPROXY="https://proxy.golang.org|direct"
Expand Down