github.com/netbrain/docker@v1.9.0-rc2/docs/articles/baseimages.md (about)

     1  <!--[metadata]>
     2  +++
     3  title = "Create a base image"
     4  description = "How to create base images"
     5  keywords = ["Examples, Usage, base image, docker, documentation,  examples"]
     6  [menu.main]
     7  parent = "smn_images"
     8  +++
     9  <![end-metadata]-->
    10  
    11  # Create a base image
    12  
    13  So you want to create your own [*Base Image*](../reference/glossary.md#base-image)? Great!
    14  
    15  The specific process will depend heavily on the Linux distribution you
    16  want to package. We have some examples below, and you are encouraged to
    17  submit pull requests to contribute new ones.
    18  
    19  ## Create a full image using tar
    20  
    21  In general, you'll want to start with a working machine that is running
    22  the distribution you'd like to package as a base image, though that is
    23  not required for some tools like Debian's
    24  [Debootstrap](https://wiki.debian.org/Debootstrap), which you can also
    25  use to build Ubuntu images.
    26  
    27  It can be as simple as this to create an Ubuntu base image:
    28  
    29      $ sudo debootstrap raring raring > /dev/null
    30      $ sudo tar -C raring -c . | docker import - raring
    31      a29c15f1bf7a
    32      $ docker run raring cat /etc/lsb-release
    33      DISTRIB_ID=Ubuntu
    34      DISTRIB_RELEASE=13.04
    35      DISTRIB_CODENAME=raring
    36      DISTRIB_DESCRIPTION="Ubuntu 13.04"
    37  
    38  There are more example scripts for creating base images in the Docker
    39  GitHub Repo:
    40  
    41   - [BusyBox](https://github.com/docker/docker/blob/master/contrib/mkimage-busybox.sh)
    42   - CentOS / Scientific Linux CERN (SLC) [on Debian/Ubuntu](
    43     https://github.com/docker/docker/blob/master/contrib/mkimage-rinse.sh) or
    44     [on CentOS/RHEL/SLC/etc.](
    45     https://github.com/docker/docker/blob/master/contrib/mkimage-yum.sh)
    46   - [Debian / Ubuntu](
    47     https://github.com/docker/docker/blob/master/contrib/mkimage-debootstrap.sh)
    48  
    49  ## Creating a simple base image using scratch
    50  
    51  You can use Docker's reserved, minimal image, `scratch`, as a starting point for building containers. Using the `scratch` "image" signals to the build process that you want the next command in the `Dockerfile` to be the first filesystem layer in your image.
    52  
    53  While `scratch` appears in Docker's repository on the hub, you can't pull it, run it, or tag any image with the name `scratch`. Instead, you can refer to it in your `Dockerfile`. For example, to create a minimal container using `scratch`:
    54  
    55      FROM scratch
    56      ADD hello /
    57      CMD ["/hello"]
    58  
    59  This example creates the hello-world image used in the tutorials.
    60  If you want to test it out, you can clone [the image repo](https://github.com/docker-library/hello-world)
    61  
    62  
    63  ## More resources
    64  
    65  There are lots more resources available to help you write your 'Dockerfile`.
    66  
    67  * There's a [complete guide to all the instructions](../reference/builder.md) available for use in a `Dockerfile` in the reference section.
    68  * To help you write a clear, readable, maintainable `Dockerfile`, we've also
    69  written a [`Dockerfile` Best Practices guide](dockerfile_best-practices.md).
    70  * If your goal is to create a new Official Repository, be sure to read up on Docker's [Official Repositories](https://docs.docker.com/docker-hub/official_repos/).