1 2 3 4 5 6 7 8
FROM clux/muslrust:stable AS build WORKDIR /app RUN cargo install mdbook COPY ./ ./ RUN mdbook build FROM lipanski/docker-static-website:2.6.0 AS release COPY --from=build /app/book .