FROM rust:latest AS builder WORKDIR /app COPY ./ . RUN cargo build --release CMD ["/app/target/release/me-site"]