The base-build image is based on Gentoo. I use it as an environment to build all other images.
It is not intented to be used directly but as an environment to build more stuff. It is reccomeded to "rebase" real images on top of 'base' using multi-stage builds, e.g.
foo-build Dockerfile:
FROM vrusinov/base-build:latest as base-build
emerge -v app-misc/foo
foo Dockerfile:
FROM vrusinov/foo-build as build
FROM vrusinov/base as base
COPY --from build /usr/bin/foo /usr/bin/foo
Content type
Image
Digest
sha256:6c57085e8…
Size
1.3 GB
Last updated
9 months ago
docker pull vrusinov/base-build