diff --git a/Dockerfile b/Dockerfile index c44852d..430bcc3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ -FROM klakegg/hugo:debian +FROM klakegg/hugo:latest-ext EXPOSE 1313 COPY . /src/ -CMD ["server", "--bind", "0.0.0.0"] +CMD ["server", "--bind", "0.0.0.0", "--environment", "production", "--disableLiveReload", "--baseURL", "https://cloud.autonomic.zone"] diff --git a/README.md b/README.md index 07023e2..b576f69 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,8 @@ Splash page for the project. ## Hack +You'll need to get the latest extended Hugo release. See [the Github releases](https://github.com/gohugoio/hugo/releases). + ```bash -$ sudo apt install -y hugo -$ hugo serve +$ hugo server ```