actions-hugo/Dockerfile

13 lines
173 B
Text
Raw Normal View History

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