https://github.com/nilsmagnus/docker-appengine-go
https://github.com/nilsmagnus/docker-appengine-go
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/nilsmagnus/docker-appengine-go
- Owner: nilsmagnus
- Created: 2016-11-07T20:11:38.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-11-08T19:03:10.000Z (over 8 years ago)
- Last Synced: 2025-02-27T02:54:59.863Z (3 months ago)
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Docker image to use when building golang apps for appengine with bitbucket pipelines.
The image is uploaded to dockerhub for use by anyone (nilslarsgard/go-appengine-1.9.46:0.5).
To use the image from dockerhub, use the following bitbucket-piplenes.yml file:
```
image: nilslarsgard/go-appengine-1.9.46:0.5pipelines:
default:
- step:
script: # Modify the commands below to build your repository.
- PACKAGE_PATH="${GOPATH}/src/bitbucket.org/${BITBUCKET_REPO_OWNER}/${BITBUCKET_REPO_SLUG}"
- mkdir -pv "${PACKAGE_PATH}"
- tar -cO --exclude-vcs --exclude=bitbucket-pipelines.yml . | tar -xv -C "${PACKAGE_PATH}"
- cd "${PACKAGE_PATH}"
- go get -v
- go build -v
- go test -v
```Enjoy.