All checks were successful
Build Website / build (push) Successful in 1s
fix dates / git, resume CI/CD.
8 lines
205 B
Docker
8 lines
205 B
Docker
FROM ghcr.io/gohugoio/hugo:latest
|
|
|
|
# Install git into the Alpine-based Hugo image so Hugo can query git
|
|
# history for `.Lastmod`. We keep the image minimal.
|
|
USER root
|
|
RUN apk add --no-cache git
|
|
|
|
USER hugo
|