2020-10-11 18:45:40 +02:00
2020-10-11 18:45:40 +02:00
2020-08-02 14:08:47 +02:00
2019-04-18 18:48:31 +02:00
2019-04-18 18:48:31 +02:00
2020-08-02 14:08:47 +02:00
2020-06-06 18:59:43 +02:00
2020-06-06 18:59:43 +02:00

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
Description
build sources for container to provide an build environment for go and rust projects
https://hub.docker.com/r/volkerraschek/build-image/
Readme 156 KiB
Languages
Shell 63%
Makefile 22.6%
Dockerfile 14.4%