From afd975b85ec32bb794397a4c359831a420e397f9 Mon Sep 17 00:00:00 2001 From: tristandamron Date: Sun, 5 Sep 2021 16:14:01 -0700 Subject: [PATCH 1/2] Add submodule with Dockerfile --- .gitmodules | 3 +++ hugo-asciidoctor-plantuml | 1 + 2 files changed, 4 insertions(+) create mode 160000 hugo-asciidoctor-plantuml diff --git a/.gitmodules b/.gitmodules index 0f13026..35000a3 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,6 @@ [submodule "themes/hugo.386-ubuntu"] path = themes/hugo.386-ubuntu url = https://github.com/TristanDamron/hugo.386-Ubuntu-Theme-.git +[submodule "hugo-asciidoctor-plantuml"] + path = hugo-asciidoctor-plantuml + url = https://github.com/capsulecorplab/hugo-asciidoctor-plantuml.git diff --git a/hugo-asciidoctor-plantuml b/hugo-asciidoctor-plantuml new file mode 160000 index 0000000..f265537 --- /dev/null +++ b/hugo-asciidoctor-plantuml @@ -0,0 +1 @@ +Subproject commit f2655378978d8e625ce55f8c6fa8cc765d83c406 From 9d76103cc23c63e8d7a133dcde470d05b9d5caa8 Mon Sep 17 00:00:00 2001 From: tristandamron Date: Sun, 5 Sep 2021 16:34:01 -0700 Subject: [PATCH 2/2] Add netlify sh script for build targets --- netlify-build.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 netlify-build.sh diff --git a/netlify-build.sh b/netlify-build.sh new file mode 100644 index 0000000..a24fb8b --- /dev/null +++ b/netlify-build.sh @@ -0,0 +1,15 @@ +apt-get remove docker docker-engine docker.io containerd runc +apt-get update +apt-get install \ + apt-transport-https \ + ca-certificates \ + curl \ + gnupg \ + lsb-release + +curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg + +apt-get update +apt-get install docker-ce docker-ce-cli containerd.io + +sh build.sh