2020-10-26 19:59:09 +00:00
|
|
|
FROM debian:sid-slim
|
2023-10-03 03:38:11 +00:00
|
|
|
# Install wget -> Install hugo -> Cleanup
|
2021-08-17 00:23:50 +00:00
|
|
|
RUN apt-get update && \
|
2023-10-03 03:38:11 +00:00
|
|
|
apt-get install -y --no-install-recommends ca-certificates wget && \
|
|
|
|
wget -O /tmp/hugo.tar.gz https://github.com/gohugoio/hugo/releases/download/v0.119.0/hugo_extended_0.119.0_linux-amd64.tar.gz && \
|
|
|
|
tar -xzf /tmp/hugo.tar.gz && \
|
|
|
|
mv /hugo /usr/local/bin/ && \
|
|
|
|
apt remove -y ca-certificates wget && \
|
|
|
|
rm -rf var/lib/{apt,dpkg,cache,log}/ /tmp/hugo*
|
2021-08-17 00:23:50 +00:00
|
|
|
|
2020-10-26 19:59:09 +00:00
|
|
|
|