You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This makes alpine image useless for many tasks, including compiling/building.
Example:
alex ~> docker run -it --rm golang:1.11-alpine go get github.com/aws/aws-sdk-go
go: missing Git command. See https://golang.org/s/gogetcmd
package github.com/aws/aws-sdk-go: exec: "git": executable file not found in $PATH
alex ~>
Same command works fine with standard image:
alex ~> docker run -it --rm golang:1.11 go get github.com/aws/aws-sdk-go
alex ~>
The text was updated successfully, but these errors were encountered:
This makes alpine image useless for many tasks, including compiling/building.
Example:
Same command works fine with standard image:
The text was updated successfully, but these errors were encountered: