actions-hugo/Dockerfile

12 lines
145 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
ENTRYPOINT ["/entrypoint.sh"]