These are basic docker images starting from official OS base images, and installing build-essential
packages. Intended for use as base images in further FROM
directives.
- ubuntu-1604
- ubuntu-1404
- ubuntu-1204
- centos-7
- centos-6
- alpine-3.6
- CentOS:
yum groupinstall -y "Development Tools"; yum install -y libtool autoconf automake wget gettext which
- Ubuntu:
apt-get install -y build-essential libtool automake pkg-config git wget gettext-base
- Ubuntu 16.04:
apt-get install -y build-essential libtool libtool-bin automake pkg-config git wget gettext-base
- Alpine:
apk add ca-certificates wget build-base git bash autoconf automake libtool gettext openrc && update-ca-certificates
trinitronx/build-tools:ubuntu-1604
:trinitronx/build-tools:ubuntu-1404
:trinitronx/build-tools:ubuntu-1204
:trinitronx/build-tools:centos-7
:trinitronx/build-tools:centos-6
:trinitronx/build-tools:alpine-3.6
:
To build the images locally, checkout this repo and run:
make build
# OR:
./bin/docker-build
This repo contains basic bats
tests to check the built images for the binaries installed.
To run the tests:
make test
See LICENSE.md for full text
Copyright James Cuzella 2014-2017 (@trinitronx)