https://github.com/deeagle/goci-container
Container to build and test go applications within CI
https://github.com/deeagle/goci-container
cicd docker
Last synced: about 2 months ago
JSON representation
Container to build and test go applications within CI
- Host: GitHub
- URL: https://github.com/deeagle/goci-container
- Owner: deeagle
- License: gpl-3.0
- Created: 2022-05-31T09:30:55.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2026-04-18T22:04:50.000Z (about 2 months ago)
- Last Synced: 2026-04-18T22:13:50.529Z (about 2 months ago)
- Topics: cicd, docker
- Language: Dockerfile
- Homepage:
- Size: 37.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# goci-container


[](https://img.shields.io/badge/Alpine_Linux-0D597F?style=flat-square&logo=alpine-linux&logoColor=white)
[](https://hub.docker.com/r/docdee/goci)
Container to build and test go applications within CI
Installed tools are:
- `gcc`
- `git`
- `musl-dev`
## Usage
You can build your application in CI step via:
```yml
# e.g. drone.io as CI
- name: build
image: docdee/goci
commands:
- go clean -cache
- CGO_ENABLED=1 go build
- go mod download
- go build -o
```
## Weblinks
- [CHANGELOG](CHANGELOG.md)