leafee98-blog/.woodpecker/myhugo.df
leafee98 4154033aa8
All checks were successful
ci/woodpecker/push/deploy Pipeline was successful
Update theme and hugo version
2025-01-02 00:14:30 +08:00

11 lines
358 B
Plaintext

FROM debian:bullseye-slim
RUN apt update && \
apt install --yes curl ca-certificates && \
curl --location --output hugo.deb \
https://github.com/gohugoio/hugo/releases/download/v0.140.2/hugo_extended_0.140.2_linux-amd64.deb && \
apt install --yes ./hugo.deb && \
rm ./hugo.deb && \
apt clean && \
rm -rf /var/lib/apt/lists/*