diff options
author | Cem Keylan <cem@ckyln.com> | 2020-09-24 22:29:37 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-09-24 22:29:37 +0300 |
commit | a144a4daddfc3c78b53a7338ac2599b2bd1d1d75 (patch) | |
tree | 985e7b6dd5e9e002711f237f8f0677cb95b8f86f /Makefile | |
download | docker-image-master.tar.gz |
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..4a521be --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +TARBALL = carbs-rootfs.tar.xz +URL = https://dl.carbslinux.org/releases/x86_64/${TARBALL} + +all: carbs-rootfs.tar + docker build -t carbslinux/base . + @echo Done. + +carbs-rootfs.tar: + @echo You will need to acquire/build Carbs Linux rootfs image. You can download + @echo through \'make download\', which requires curl, or you can use the URL in + @echo the Makefile to do it by yourself. + +download: + curl -Lo- ${URL} | xz -cd - > carbs-rootfs.tar |