summaryrefslogtreecommitdiff
path: root/iosevka/justfile
blob: 229a1d3b7ad1813959dcc7bb6fce1bb1136da348 (plain)
1
2
3
4
5
6
7
8
build-container-image:
    podman build --tag iosevka-builder:latest .

build-iosevka: build-container-image
    podman run --rm --volume "${PWD}:/work" iosevka-builder:latest

clean:
    podman image rm iosevka-builder:latest