jmopines/scripts/Dockerfile
Jean-Michel Tremblay d70d897470
All checks were successful
Build Website / build (push) Successful in 1s
adding file to get effing date in git
fix dates / git, resume CI/CD.
2026-04-23 16:46:05 -04:00

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