actions-hugo/Dockerfile

13 lines
173 B
Text
Raw Normal View History

2024-12-12 00:02:06 +00:00
FROM alpine:latest
RUN apk add --no-cache \
brotli \
gzip \
hugo
COPY entrypoint.sh /entrypoint.sh
2024-12-12 00:17:27 +00:00
RUN chmod +x /entrypoint.sh
2024-12-12 00:02:06 +00:00
ENTRYPOINT ["/entrypoint.sh"]