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 b11e855c74
add(github-release): go programm to push github releases
2019-08-26 13:34:36 +02:00
installation-scripts add(github-release): go programm to push github releases 2019-08-26 13:34:36 +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 fix(go-bindata): use go-bindata from go-bindata/go-bindata instead arm arch repo 2019-08-25 21:08:16 +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 fix(README): add docker pull info shield 2019-08-25 21:08:40 +02:00

README.md

build-image

Build Status Docker Pulls

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