https://github.com/patricksanders/go-dockerize
Lean Golang Docker images from scratch
https://github.com/patricksanders/go-dockerize
Last synced: 6 months ago
JSON representation
Lean Golang Docker images from scratch
- Host: GitHub
- URL: https://github.com/patricksanders/go-dockerize
- Owner: patricksanders
- Created: 2019-06-22T21:28:57.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-06-22T21:35:10.000Z (about 7 years ago)
- Last Synced: 2025-01-29T19:32:19.286Z (over 1 year ago)
- Language: Dockerfile
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Go Dockerize
Lean Golang Docker images from scratch. Currently a proof of concept.
## Usage
Here's an easy example of building [statsdebug](https://github.com/patricksanders/statsdebug):
```bash
docker build --build-arg PROJECT=github.com/patricksanders/statsdebug -t statsdebug .
docker run --rm statsdebug
```
### Build Args
| Argument | Default | Description |
|----------|---------|-------------|
| GOLANG_VERSION | `latest` | Golang image tag for builder |
| PROJECT | | Go project to build, in the form `github.com/org/repo` |