mirror of
https://github.com/ublue-os/bazzite.git
synced 2024-12-26 21:15:54 +00:00
532190ecce
* feat(dev): add easy local iso and vscode integration * fix: remove unused variables.
12 lines
257 B
Plaintext
12 lines
257 B
Plaintext
$(IMAGE_NAME)-$(IMAGE_TAG):
|
|
skopeo copy docker-daemon:$(IMAGE_REPO)/$(IMAGE_NAME):$(IMAGE_TAG) oci:$(IMAGE_NAME)-$(IMAGE_TAG)
|
|
|
|
install-deps:
|
|
$(install_pkg) skopeo
|
|
|
|
FILES=$(filter-out Makefile,$(wildcard *))
|
|
clean:
|
|
ifneq ($(FILES),)
|
|
rm -Rf $(FILES)
|
|
endif
|