FROM rust:1.60 WORKDIR /app COPY Cargo.toml . RUN cargo build --release COPY target/release/* . EXPOSE 3000 CMD ["./spacebutton"]