12 lines
444 B
Docker
12 lines
444 B
Docker
FROM debian:sid-slim
|
|
# Install wget -> Install hugo -> Cleanup
|
|
RUN apt-get update && \
|
|
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*
|
|
|
|
|