|
1 month ago | |
---|---|---|
installation-scripts | 3 months ago | |
.drone.yml | 1 month ago | |
.editorconfig | 2 years ago | |
.gitattributes | 2 years ago | |
.gitignore | 3 months ago | |
Dockerfile | 1 month ago | |
LICENSE | 1 year ago | |
Makefile | 1 month ago | |
README.md | 10 months ago |
This project, hosted on git.cryptic.systems, contains only files to build a build container image.
To use this image for building golang applications execute this in your root folder of your go project.
$ docker run \
--rm \
--volume ${PWD}:/workspace \
volkerraschek/build-image:latest \
go build
If you want to compile instead go rust sourcecode, than you can do it similar to the golang example.
$ docker run \
--rm \
--volume ${PWD}:/workspace \
volkerraschek/build-image:latest \
cargo build --release