1 2 3 4 5 6 7 8 9 10 11 12 13
FROM rust:1.60 WORKDIR /app COPY Cargo.toml . RUN cargo build --release COPY target/release/* . EXPOSE 3000 CMD ["./spacebutton"]