diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..283f619 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,16 @@ +ARG HUGO_ENV=production +ARG HUGO_VERSION=0.98.0 + +FROM registry.gitlab.com/pages/hugo:$HUGO_VERSION as hugo + +LABEL maintainer="loomis.forrest@gmail.com" + +COPY . /app + +WORKDIR /app + +RUN HUGO_ENV=$HUGO_ENV hugo -v + +FROM nginx + +COPY --from=hugo /app/public /usr/share/nginx/html diff --git a/config.toml b/config.toml index abfd225..1e08936 100644 --- a/config.toml +++ b/config.toml @@ -15,5 +15,5 @@ github = "cybercyst" keybase = "forrestloomis" [params.extra] -copyright = "© 2021 Forrest Loomis" +copyright = "© 2022 Forrest Loomis" poweredby = true