mirror of https://github.com/sunface/rust-course
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
222 B
12 lines
222 B
1 month ago
|
FROM rust:1.87-slim-bookworm AS builder
|
||
|
|
||
|
ENV CARGO_HOME=/usr/local/cargo
|
||
|
RUN cargo install mdbook
|
||
|
|
||
|
WORKDIR /app
|
||
|
COPY . .
|
||
|
RUN mdbook build --dest-dir /book
|
||
|
|
||
|
FROM nginx:alpine
|
||
|
COPY --from=builder /book /usr/share/nginx/html
|