Files
infra.mdbook/mdbook/Dockerfile
R.Y.A.N ee4a2c0496
All checks were successful
on-push / build (push) Successful in 2m18s
on-release / build (push) Successful in 2m10s
Hello infra.mdbook
2026-01-21 21:10:11 +01:00

8 lines
179 B
Docker

FROM alpine:latest
LABEL maintainer="Ryan <ryan@helloryan.se>"
RUN apk add rust cargo
RUN cargo install mdbook
ENV PATH="/root/.cargo/bin"
ENTRYPOINT ["/root/.cargo/bin/mdbook"]