diff --git a/website/Dockerfile b/website/Dockerfile index 2b78bc0..9f7b9e4 100644 --- a/website/Dockerfile +++ b/website/Dockerfile @@ -1,6 +1,5 @@ FROM gitea/runner-images:ubuntu-latest -RUN apt-get update && \ - apt-get install -y --no-install-recommends hugo && \ - rm -rf var/lib/{apt,dpkg,cache,log}/ - +RUN wget https://github.com/gohugoio/hugo/releases/download/v0.135.0/hugo_0.135.0_linux-amd64.deb && \ + apt-get install -y ./hugo_0.135.0_linux-amd64.deb && \ + rm -rf var/lib/{apt,dpkg,cache,log} hugo_0.135.0_linux-arm64.deb