mirror of
https://github.com/mentos1386/dotfiles.git
synced 2024-11-26 17:18:01 +00:00
14 lines
316 B
Makefile
14 lines
316 B
Makefile
|
.PHONY: fedora ubuntu packages all
|
||
|
|
||
|
fedora:
|
||
|
@docker buildx build --load -t env-fedora -f Dockerfile.fedora .
|
||
|
|
||
|
ubuntu:
|
||
|
@docker buildx build --load -t env-ubuntu -f Dockerfile.ubuntu .
|
||
|
|
||
|
packages:
|
||
|
@docker buildx build --load -t starship:0.47.0 -f packages/Dockerfile.starship packages/
|
||
|
|
||
|
all: packages fedora ubuntu
|
||
|
|