Sign inSign up

mkaag/baseimage

By mkaag

Updated almost 9 years ago

Image
0

1.6K

mkaag/baseimage repository overview

docker-base-image

Docker Hub

This repository contains the Dockerfile and the configuration files to build a base image for Docker.

Base Docker Image
Installation
docker build -t mkaag/baseimage github.com/mkaag/docker-baseimage
Usage
Basic usage
docker run -ti --rm mkaag/baseimage /sbin/my_init -- bash -l
Using as base image
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/*

Tag summary

Content type

Image

Digest

sha256:a12904b5c

Size

153.7 MB

Last updated

almost 9 years ago

docker pull mkaag/baseimage