Skip to content

Commit

Permalink
Update dependencies with go get -u ./...; go mod tidy; go test ./... …
Browse files Browse the repository at this point in the history
…and update Dockerfile
  • Loading branch information
ddmls committed Mar 4, 2022
1 parent 7ae0c70 commit 78c3312
Show file tree
Hide file tree
Showing 3 changed files with 594 additions and 127 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.16.3-alpine AS build
FROM golang:1.17-alpine AS build
WORKDIR $GOPATH/src/github.com/micromata/dave/
COPY . .
RUN go build -o /go/bin/dave cmd/dave/main.go
Expand Down
32 changes: 10 additions & 22 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,16 @@ module github.com/micromata/dave
go 1.12

require (
github.com/fsnotify/fsnotify v1.4.9
github.com/hashicorp/hcl v1.0.0
github.com/inconshreveable/mousetrap v1.0.0
github.com/konsorten/go-windows-terminal-sequences v1.0.3
github.com/fsnotify/fsnotify v1.5.1
github.com/magefile/mage v1.10.0
github.com/magiconair/properties v1.8.2
github.com/mitchellh/mapstructure v1.3.3
github.com/pelletier/go-toml v1.8.0
github.com/magiconair/properties v1.8.6 // indirect
github.com/pkg/errors v0.9.1
github.com/sirupsen/logrus v1.6.0
github.com/spf13/afero v1.3.4
github.com/spf13/cast v1.3.1
github.com/spf13/cobra v1.0.0
github.com/spf13/jwalterweatherman v1.1.0
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.7.1
github.com/stretchr/objx v0.1.1 // indirect
github.com/subosito/gotenv v1.2.0
golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a
golang.org/x/net v0.0.0-20200822124328-c89045814202
golang.org/x/sys v0.0.0-20200824131525-c12d262b63d8
golang.org/x/text v0.3.3
gopkg.in/ini.v1 v1.60.1
gopkg.in/yaml.v2 v2.3.0
github.com/sirupsen/logrus v1.8.1
github.com/spf13/afero v1.8.1 // indirect
github.com/spf13/cobra v1.3.0
github.com/spf13/viper v1.10.1
golang.org/x/crypto v0.0.0-20220214200702-86341886e292
golang.org/x/net v0.0.0-20220225172249-27dd8689420f
golang.org/x/sys v0.0.0-20220227234510-4e6760a101f9 // indirect
gopkg.in/ini.v1 v1.66.4 // indirect
)

0 comments on commit 78c3312

Please sign in to comment.