Sign inSign up

lyderic/base

By lyderic

Updated over 10 years ago

Alpine base image

Image
0

2.6K

lyderic/base repository overview

This image is the official Alpine image to which I only added the autostart of /sbin/init so I can run service that don't need to stay in the foreground.

Dockerfile:

FROM alpine
MAINTAINER lyderic <[email protected]>

RUN apk update
RUN apk upgrade

# We don't want ttys to respawn, this is not necessary
RUN /bin/sed -i -e "/^tty/s/^/#/" /etc/inittab

ENTRYPOINT ["/sbin/init"]

Tag summary

Content type

Image

Digest

Size

4.5 MB

Last updated

over 10 years ago

docker pull lyderic/base