1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
FROM rust:latest as build WORKDIR /app COPY . . RUN cargo build --release FROM rust:latest WORKDIR /app COPY --from=build /app/target/release/roast /app/roast CMD ["/app/roast"]