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"]
Content type
Image
Digest
Size
4.5 MB
Last updated
over 10 years ago
docker pull lyderic/base