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 2519b43cc5
fix: file permissions
2020-06-01 16:41:21 +02:00
installation-scripts fix: file permissions 2020-06-01 16:41:21 +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 fix(Makefile, ci): update readme on hub.docker.io automatically 2019-09-13 17:18:31 +02:00
Dockerfile fix(Dockerfile): use long flags 2020-06-01 16:33:43 +02:00
LICENSE fix(LICENSE): publish build-image under apache 2.0 license 2019-08-25 15:42:25 +02:00
Makefile fix(Makefile, ci): update readme on hub.docker.io automatically 2019-09-13 17:18:31 +02:00
README.md fix(README): add subsection usage 2019-09-13 17:58:20 +02:00

README.md

build-image

Build Status Docker Pulls

This project, hosted on github, contains only files to build a build container image.

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