leafee98-blog/.woodpecker/myhugo.df
leafee98 46b090cab2
All checks were successful
ci/woodpecker/push/deploy Pipeline was successful
Add the image of building blog
2023-04-01 20:29:28 +08:00

10 lines
348 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.111.3/hugo_extended_0.111.3_linux-amd64.deb && \
apt install --yes ./hugo.deb && \
rm ./hugo.deb && \
apt clean && \
rm -rf /var/lib/apt/lists/*