Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

imagename

alpine:edge-based dockerization of

debian:stable-slim-based dockerization of

scratch-based single-binary container image which

As the site says:

Usage

Interactive

The following shell function can assist in running this image interactively:

imagename() {
  docker run \
    --rm \
    --interactive \
    --tty \
    --volume "$(pwd):/work" \
    "backplane/imagename" \
    "$@"
}

As Build Stage

FROM backplane/imagename as builder