Sign inSign up

wanlay/alpine

By wanlay

Updated about 9 years ago

images contained bash based on offical images

Image
0

282

wanlay/alpine repository overview

Usage

Use like you would any other base image:

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

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

FROM ubuntu:16.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 184MB image.

Tag summary

Content type

Image

Digest

Size

4 MB

Last updated

about 9 years ago

docker pull wanlay/alpine