1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-16 04:35:13 +03:00
aports/testing/dockerize/go.mod
Kevin Daudt ad873e1f7e testing/dockerize: modernize
With go modules, it has become a lot easier to buid go packages with
deterministic module versions.

Though the project does not have a go.{mod,sum} file, it's easy enough
to provide ourselves, and makes it no longer necessary to create a
snapshot for this project, resulting in a much simpler APKBUILD.
2021-02-17 16:56:06 +00:00

13 lines
449 B
Modula-2

module dockerize
go 1.15
require (
github.com/elgs/gosplitargs v0.0.0-20160406212339-e9cf3de21e14
github.com/hpcloud/tail v1.0.1-0.20170207023346-faf842bde7ed
github.com/jwilder/gojq v0.0.0-20160421194050-81fa9a608a13
golang.org/x/net v0.0.0-20160912184337-749a502dd1ea
golang.org/x/sys v0.0.0-20210217105451-b926d437f341 // indirect
gopkg.in/fsnotify.v1 v1.4.7 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
)