Hugo build directly from source https://github.com/gohugoio/hugo
213
This container is build from the hugo git repository https://github.com/gohugoio/hugo no changes have been made and the versions of the container are synchronous with the version tags in the original repository.
you can build this yourself with the following shell script:
#!/bin/bash
echo Fetching latest version from Github.com
latest=$(curl -s -X GET https://api.github.com/repos/gohugoio/hugo/releases/latest | jq -r '.name')
echo Version is ${latest}
echo ###
echo Building Container hugo:${latest}
docker build -t hugo:${latest} https://github.com/gohugoio/hugo.git#${latest}
docker tag hugo:${latest} hugo:latest
echo Done.
Content type
Image
Digest
Size
36.2 MB
Last updated
about 6 years ago
docker pull martyca/hugo