Files
infra.mdbook/mdbook/Dockerfile
R.Y.A.N fe70631757
All checks were successful
on-push / build (push) Successful in 4m38s
on-release / build (push) Successful in 9s
Add git
2026-01-21 22:13:45 +01:00

12 lines
301 B
Docker

FROM alpine:latest
LABEL maintainer="Ryan <ryan@helloryan.se>"
RUN apk add rust cargo minio-client git
RUN cargo install mdbook
ENV PATH="/root/.cargo/bin:$PATH"
RUN printf "#!/bin/sh\n\$@\n" > /entrypoint.sh && chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]
CMD ["/root/.cargo/bin/mdbook"]