lubitest/actions/hugo/Dockerfile
lubiana 1676484d0d
Some checks failed
/ debug (push) Has been cancelled
test
2024-12-12 21:31:17 +01:00

12 lines
166 B
Docker

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