This repository contains the Dockerfile and the configuration files to build a base image for Docker.
docker build -t mkaag/baseimage github.com/mkaag/docker-baseimage
docker run -ti --rm mkaag/baseimage /sbin/my_init -- bash -l
FROM mkaag/baseimage:latest
# Use baseimage-docker's init system.
CMD ["/sbin/my_init"]
# ...put your own build instructions here...
# Clean up APT when done.
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
Content type
Image
Digest
sha256:a12904b5c…
Size
153.7 MB
Last updated
almost 9 years ago
docker pull mkaag/baseimage