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
While using Cloud9 I would run into an issue when running docker build . -t {account_id}.dkr.ecr.{region}.amazonaws.com/mythicalmysfits/service:latest
I would get an error that the Dockerfile in MythicalMysfitsService was missing the Git command. This was causing the CodePipeline to fail for build. github.com/aws/aws-sdk-go (download) go: missing Git command. See https://golang.org/s/gogetcmd package github.com/aws/aws-sdk-go/aws: exec: "git": executable file not found in $PATH
The fix to this was adding the RUN apk update && apk add --no-cache git line of code found in module 2's Dockerfile.
The text was updated successfully, but these errors were encountered:
While using Cloud9 I would run into an issue when running
docker build . -t {account_id}.dkr.ecr.{region}.amazonaws.com/mythicalmysfits/service:latest
I would get an error that the Dockerfile in MythicalMysfitsService was missing the Git command. This was causing the CodePipeline to fail for build.
github.com/aws/aws-sdk-go (download) go: missing Git command. See https://golang.org/s/gogetcmd package github.com/aws/aws-sdk-go/aws: exec: "git": executable file not found in $PATH
The fix to this was adding the
RUN apk update && apk add --no-cache git
line of code found in module 2's Dockerfile.The text was updated successfully, but these errors were encountered: