build sources for container to provide an build environment for go and rust projects https://hub.docker.com/r/volkerraschek/build-image/
Go to file
Markus Pesch 88bab7f6ff
fix(LICENSE): publish build-image under apache 2.0 license
2019-08-25 15:42:25 +02:00
installation-scripts feat(rpm-builder): add rpm-builder binary and fix PATh environment 2019-08-25 15:11:04 +02:00
.editorconfig add: travis pipeline 2019-04-18 18:48:31 +02:00
.gitattributes add: travis pipeline 2019-04-18 18:48:31 +02:00
.travis.yml feat(rust): add rust compiler 2019-08-19 18:30:34 +02:00
Dockerfile feat(rpm-builder): add rpm-builder binary and fix PATh environment 2019-08-25 15:11:04 +02:00
LICENSE fix(LICENSE): publish build-image under apache 2.0 license 2019-08-25 15:42:25 +02:00
Makefile feat(rpm-builder): add rpm-builder binary and fix PATh environment 2019-08-25 15:11:04 +02:00
README.md feat(rust): add rust compiler 2019-08-19 18:30:34 +02:00

README.md

build-image Build Status

This project contains only files to build a build container image.

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