lubitest/actions/hugo-three/Dockerfile
lubiana 5fb8877cd7
All checks were successful
/ debug (push) Successful in 42s
test
2024-12-15 17:27:59 +01:00

12 lines
172 B
Docker

FROM alpine:latest
RUN apk add --no-cache \
brotli \
gzip \
hugo
ADD entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]