alpine-cli/justfile
2023-02-27 13:33:28 -05:00

13 lines
292 B
Makefile

image := "ghcr.io/jswank/alpine-cli:latest"
# get a bash shell on a temporary container using {{image}}
all: run
# get a bash shell on a temporary container using {{image}}
run:
@ docker run -ti --rm {{image}}
# build a new image
build:
docker build -t {{image}} -f Dockerfile ./ctx