jenkins-x-bot / dev-env-base

Base container images for the dev-env (github.com/jenkins-x/dev-env)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

dev-env-base

A development environment base image for docker.

overview

The intention of this project is to provide an image with the necessary tools and packages required for a golang development environment which is convenient and accessible. The dev-env-base image is built upon an alpine golang image, we extend this base image and include the following tools/packages:

build

local

Use the following command to build the docker image:

make build

jx

Remote builds of this project are triggered via Pull Requests or Merges into master.

run

To use the dev-env-base as a complete and stateful environment please see the dev-env, or alternatively use the following as an example:

alpine

docker run --name dev-env-base \
           --rm \
           --tty \
           --interactive \
           gcr.io/jenkinsxio/dev-env-base:0.0.1-go-alpine

stretch

docker run --name dev-env-base \
           --rm \
           --tty \
           --interactive \
           gcr.io/jenkinsxio/dev-env-base:0.0.1-go-stretch

About

Base container images for the dev-env (github.com/jenkins-x/dev-env)

License:Apache License 2.0


Languages

Language:Makefile 100.0%