mirror of
https://github.com/JasonN3/build-container-installer.git
synced 2025-12-25 19:07:54 +01:00
11 lines
No EOL
217 B
Makefile
11 lines
No EOL
217 B
Makefile
container:
|
|
skopeo copy docker://$(IMAGE_REPO)/$(IMAGE_NAME):$(IMAGE_TAG) oci:container
|
|
|
|
install-deps:
|
|
$(install_pkg) skopeo
|
|
|
|
FILES=$(filter-out Makefile,$(wildcard *))
|
|
clean:
|
|
ifneq ($(FILES),)
|
|
rm -Rf $(FILES)
|
|
endif |