FROM rust:1.60.0

WORKDIR /usr/app
COPY ./ /usr/app
RUN rustc solution.rs

CMD ["./solution"]