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 461a7d9e8b
fix: migrate to drone
2020-06-06 18:59:43 +02:00
installation-scripts fix: add additional pacman mirrors 2020-06-01 17:01:46 +02:00
.drone.yml fix: migrate to drone 2020-06-06 18:59:43 +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
Dockerfile fix: migrate to drone 2020-06-06 18:59:43 +02:00
LICENSE fix(LICENSE): publish build-image under apache 2.0 license 2019-08-25 15:42:25 +02:00
Makefile fix: migrate to drone 2020-06-06 18:59:43 +02:00
README.md fix: migrate to drone 2020-06-06 18:59:43 +02:00

README.md

build-image

Build Status Docker Pulls

This project, hosted on git.cryptic.systems, 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