## SETUP ##
FROM rust

RUN mkdir /src /comp /app
WORKDIR /comp

## RUNTIME ##
CMD cp -r /src/* . && cargo build && cp ./target/debug/Tasky /app