/alpine-base-image

Docker Alpine base image production ready

Primary LanguageMakefileMIT LicenseMIT

alpine-base-image

This repository contains the sources for the following docker base images:

Usage

This Image is intended to be used in multi-stage docker builds and is for final or production use, you can find more info about multi-stage build in this blog post

FROM kitabisa/alpine-base-image

ADD binfile /opt/test/binfile
WORKDIR /opt/test/

CMD binfile

Developing and testing

# Pull image
git clone https://github.com/kitabisa/alpine-base-image.git
cd alpine-base-image

# hack hack hack

# Build
make build