Thank you for attending DockerCon 2020!Watch the recordings.
✕
Explore
Pricing
Sign In
Explore
alpine
product logo

alpine

Docker Official Images
A minimal Docker image based on Alpine Linux with a complete package index and only 5 MB in size!
1B+
Container Linux 386 ARM ARM 64 PowerPC 64 LE x86-64 IBM Z Featured Images Base Images Operating Systems Official Image
Linux - IBM Z ( latest )
Copy and paste to pull this image
View Available Tags
DescriptionReviewsTags

Quick reference

  • Maintained by: Natanael Copa (an Alpine Linux maintainer)

  • Where to get help: the Docker Community Forums, the Docker Community Slack, or Stack Overflow

Supported tags and respective Dockerfile links

  • 20200626, edge
  • 3.12.0, 3.12, 3, latest
  • 3.11.6, 3.11
  • 3.10.5, 3.10
  • 3.9.6, 3.9

Quick reference (cont.)

  • Where to file issues: https://github.com/alpinelinux/docker-alpine/issues

  • Supported architectures: (more info) amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x

  • Published image artifact details: repo-info repo's repos/alpine/ directory (history) (image metadata, transfer size, etc)

  • Image updates: official-images PRs with label library/alpine
    official-images repo's library/alpine file (history)

  • Source of this description: docs repo's alpine/ directory (history)

What is Alpine Linux?

Alpine Linux is a Linux distribution built around musl libc and BusyBox. The image is only 5 MB in size and has access to a package repository that is much more complete than other BusyBox based images. This makes Alpine Linux a great image base for utilities and even production applications. Read more about Alpine Linux here and you can see how their mantra fits in right at home with Docker images.

logo

How to use this image

Usage

Use like you would any other base image:

FROM alpine:3.7
RUN apk add --no-cache mysql-client
ENTRYPOINT ["mysql"]

This example has a virtual image size of only 36.8MB. Compare that to our good friend Ubuntu:

FROM ubuntu:18.04
RUN apt-get update \
    && apt-get install -y --no-install-recommends mysql-client \
    && rm -rf /var/lib/apt/lists/*
ENTRYPOINT ["mysql"]

This yields us a virtual image size of about 145MB image.

License

View license information for the software contained in this image.

As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained).

Some additional license information which was able to be auto-detected might be found in the repo-info repository's alpine/ directory.

As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.

Why Docker
OverviewWhat is a Container
Products
Product Overview
Product Offerings
Docker DesktopDocker Hub
Features
Container RuntimeDeveloper ToolsDocker AppKubernetes
Developers
Getting StartedPlay with DockerCommunityOpen SourceDocsHub Release Notes
Company
About UsResourcesBlogCustomersPartnersNewsroomEvents and WebinarsCareersContact Us
© 2020 Docker Inc. All rights reserved | Terms of Service | Privacy | Legal