Skip to content

Latest commit

 

History

History
33 lines (20 loc) · 969 Bytes

README.md

File metadata and controls

33 lines (20 loc) · 969 Bytes

alpine-armhf

Build Status

This is a minimal, busybox-like Alpine Linux container,

It contains a bare minimum of packages required for building containers:

  • apk
  • curl
  • wget
  • ca-certificates

Credits

This is a fork of luxas/alpine-arm, which was in turn possible thanks to work by uggedal on packaging Alpine Linux for Docker.

Changes

  • Removed the additional install script (for feature parity with other images) and simplified the Dockerfile somewhat.
  • Removed pointless nested build step and bumped version

Usage

Use this as base for your own containers:

FROM insightful/alpine:3.7-armhf
RUN apk-install <packagename>

CMD ["/bin/sh"]