build sources for container to provide an build environment for go and rust projects
https://hub.docker.com/r/volkerraschek/build-image/
Markus Pesch
799fc1291b
All checks were successful
continuous-integration/drone/push Build is passing
|
||
---|---|---|
installation-scripts | ||
.drone.yml | ||
.editorconfig | ||
.gitattributes | ||
.gitignore | ||
.markdownlint.yaml | ||
Dockerfile | ||
LICENSE | ||
Makefile | ||
manifest.tmpl | ||
README.md | ||
renovate.json |
build-image
This project contains all sources to build the container image
docker.io/volkerraschek/build-image
. The primary goal of the image is only
to provide an environment to compile source code like go or rust.
Usage
golang
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
rust
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