initial revision
This commit is contained in:
12
justfile
Normal file
12
justfile
Normal file
@@ -0,0 +1,12 @@
|
||||
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
|
||||
Reference in New Issue
Block a user