2023-04-01 12:18:55 +00:00
|
|
|
FROM debian:bullseye-slim
|
|
|
|
|
|
|
|
RUN apt update && \
|
|
|
|
apt install --yes curl ca-certificates && \
|
2025-01-01 16:11:57 +00:00
|
|
|
curl --location --output hugo.deb \
|
|
|
|
https://github.com/gohugoio/hugo/releases/download/v0.140.2/hugo_extended_0.140.2_linux-amd64.deb && \
|
2023-04-01 12:18:55 +00:00
|
|
|
apt install --yes ./hugo.deb && \
|
|
|
|
rm ./hugo.deb && \
|
|
|
|
apt clean && \
|
|
|
|
rm -rf /var/lib/apt/lists/*
|