Compare commits

...

2 Commits

Author SHA1 Message Date
Lance Vick 26d465af36
add default cmd for stage0 2024-01-28 02:44:35 -08:00
Lance Vick a3168db8e2
default to local, but have mirrors available 2024-01-28 02:38:59 -08:00
2 changed files with 4 additions and 3 deletions

View File

@ -1,9 +1,9 @@
export PLATFORM := linux/amd64
export BUILDER := $(shell which docker)
export REGISTRY := stagex
export REGISTRY := local
export MIRRORS := \
https://git.distrust.co/${REGISTRY} \
${REGISTRY}
https://git.distrust.co/stagex \
stagex
clean_logs := $(shell rm *.log 2>&1 >/dev/null || :)

View File

@ -96,3 +96,4 @@ COPY --from=build1 /rootfs /
FROM scratch as package
COPY --from=install / /
CMD ["x86/bin/kaem","--version"]