Files
faas-cli/go.mod
Alex Ellis (OpenFaaS Ltd) 3534df7157 Add flag to setup QEMU for the publish command
The new flag will run a community container image to setup
the qemu-user-static binary on the host, so that multi-arch
builds can take place.

This is only compatible with AMD64 at the current time.

Tested on Darwin M1 with MacOS, and saw an error.

Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
2022-08-06 10:40:27 +01:00

38 lines
1.4 KiB
Modula-2

module github.com/openfaas/faas-cli
go 1.17
// replace github.com/docker/docker => github.com/docker/engine v1.4.2-0.20190717161051-705d9623b7c1
// replace golang.org/x/sys => golang.org/x/sys v0.0.0-20200826173525-f9321e4c35a6
require (
github.com/alexellis/go-execute v0.5.0
github.com/alexellis/hmac v1.3.0
github.com/docker/docker v17.12.0-ce-rc1.0.20200618181300-9dc6525e6118+incompatible
github.com/drone/envsubst v1.0.3
github.com/google/go-cmp v0.5.8
github.com/mitchellh/go-homedir v1.1.0
github.com/morikuni/aec v1.0.0
github.com/openfaas/faas-provider v0.19.0
github.com/openfaas/faas/gateway v0.0.0-20220805080331-b87b96ae456e
github.com/pkg/errors v0.9.1
github.com/ryanuber/go-glob v1.0.0
github.com/spf13/cobra v1.5.0
github.com/spf13/pflag v1.0.5
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
github.com/gotestyourself/gotestyourself v1.4.0 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.3 // indirect
github.com/kr/pretty v0.1.0 // indirect
github.com/sirupsen/logrus v1.6.0 // indirect
github.com/stretchr/testify v1.7.0 // indirect
golang.org/x/sys v0.0.0-20220804214406-8e32c043e418 // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gotest.tools v1.4.0 // indirect
)