lubitest/actions/hugo-three/Dockerfile

13 lines
172 B
Text
Raw Normal View History

2024-12-15 16:19:51 +00:00
FROM alpine:latest
RUN apk add --no-cache \
brotli \
gzip \
hugo
ADD entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]