diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..980b45b --- /dev/null +++ b/Dockerfile @@ -0,0 +1,12 @@ +FROM alpine:latest + +WORKDIR /app + +# Install required packages +RUN apk add --no-cache hugo git + +# Clone the website repository +RUN git clone https://git.argentumcation.com/mira/website.git /app \ + && git submodule update --init --recursive + +CMD ["hugo", "server", "--bind", "0.0.0.0"] diff --git a/layouts/index.html b/layouts/index.html index c64a204..dc05cda 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -1,7 +1,7 @@
- + {{ partialCached "head.html" . "ArgentumCation"}} @@ -12,3 +12,5 @@ + +